413840-background-unchanged.html (707B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" 2 "http://www.w3.org/TR/html4/strict.dtd"> 3 <html lang="en-US"> 4 <head> 5 <title>Test case for list items flowing around floats</title> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 7 <meta http-equiv="Content-Style-Type" content="text/css"> 8 <style type="text/css"> 9 10 div { float: left; height: 3em; width: 100px; } 11 12 ul, ol, li { margin-top: 0; margin-bottom: 0; } 13 li { height: 2em; background: aqua; color: black; } 14 15 </style> 16 </head> 17 <body> 18 19 <div></div> 20 21 <ol> 22 <li>one</li> 23 <li>two</li> 24 <li>three</li> 25 <li>four</li> 26 </ol> 27 28 <div></div> 29 30 <ul> 31 <li>one</li> 32 <li>two</li> 33 <li>three</li> 34 <li>four</li> 35 </ul> 36 37 </body> 38 </html>