зеркало из https://github.com/mozilla/pjs.git
26 строки
793 B
HTML
26 строки
793 B
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>css3-background: fallback colors</title>
|
||
|
<link rel="author" title="L. David Baron" href="http://dbaron.org/" />
|
||
|
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
|
||
|
<link rel="help" href="http://dev.w3.org/csswg/css3-background/#background-color" />
|
||
|
<meta name="flags" content="" />
|
||
|
<meta name="assert" content="Fallback color is based on whether the *bottom-most* image is missing." />
|
||
|
<style type="text/css"><![CDATA[
|
||
|
|
||
|
div {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
background: url(transparent-32x32.png), url(404.png) red lime;
|
||
|
}
|
||
|
|
||
|
]]></style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div></div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|