layers-stacking-order.xhtml (883B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>css3-background: stacking order of layers</title> 5 <link rel="author" title="L. David Baron" href="https://dbaron.org/" /> 6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> 7 <link rel="help" href="http://dev.w3.org/csswg/css3-background/#layering" /> 8 <meta name="flags" content="" /> 9 <style type="text/css"><![CDATA[ 10 11 div#test { 12 position: relative; height: 100px; width: 100px; 13 background: url(blue-32x32.png) 5px 5px no-repeat, 14 url(yellow-32x32.png) 15px 15px no-repeat, 15 url(fuchsia-32x32.png) 10px 10px no-repeat, 16 url(aqua-32x32.png) 20px 20px no-repeat; 17 } 18 19 20 ]]></style> 21 </head> 22 <body> 23 24 <div id="test"></div> 25 26 </body> 27 </html>