1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Nested floats: Basic</title>
5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/float/043.html" type="text/html">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats">
8 <style type="text/css">
9 .float { float: left; background: red; padding: 0; margin: 0; list-style: none; }
10 .text { font: 900 2em/1 sans-serif; background: green; color: white; }
11 </style>
12 </head>
13 <body>
14 <p>There should be a single green block with the word "PASS" below.</p>
15 <ul class="float">
16 <li class="float"> <span class="float text"> PA </span></li>
17 <li class="float"> <span class="float text"> SS </span></li>
18 </ul>
19 </body>
20 </html>