389623-1.html (326B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 .float, .float + div { 6 float: left; 7 height: 200px; 8 width: 100px; 9 background: #ccc; 10 } 11 .float + div{ 12 float:right; 13 } 14 #bg { 15 background: url() #999 fixed; 16 height: 100px; 17 } 18 </style> 19 </head> 20 <body> 21 <div class="float"></div> 22 <div></div> 23 <div id="bg"></div> 24 </body> 25 </html>