list-style-position-009.xht (1407B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 5 <title>CSS Test: Marker box position (outside principal box) - floated-right child</title> 6 <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite"/> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style"/> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#block-boxes"/> 9 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats"/> 10 <meta name="assert" content="A floated element (as a child of the principal box) should not affect the horizontal position of the marker box (positioned outside principal box) in relation to the principal box's content"/> 11 <style type="text/css"> 12 #test{ 13 border-top:3px solid black; 14 display:list-item; 15 font-size:85px; 16 list-style-position:outside; 17 margin:100px; 18 width:250px; 19 } 20 #test div{ 21 background:yellow; 22 float:right; 23 height:100px; 24 width:100px; 25 } 26 </style> 27 </head> 28 29 <body> 30 <p>To pass, a bullet (filled-in circle) <strong>must</strong> appear to the left of a yellow square, and the bullet probably <strong>should not</strong> appear above the black line.</p> 31 <div id="test"> 32 <div></div> 33 </div> 34 </body> 35 </html>