line-height-applies-to-010.xht (1503B)
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 <title>CSS Test: Line-height applied to elements with 'display' set to 'list-item'</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" /> 8 <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'list-item'." /> 9 <style type="text/css"> 10 #div1 11 { 12 margin-left: 1em; 13 position: relative; 14 } 15 div div 16 { 17 background: orange; 18 height: 2in; 19 left: 1in; 20 position: absolute; 21 top: 0; 22 width: 1in; 23 } 24 span 25 { 26 background: blue; 27 display: list-item; 28 line-height: 2in; 29 width: 1in; 30 } 31 </style> 32 </head> 33 <body> 34 <p>Test passes if the blue and orange boxes below are the same height and there is a marker bullet on the left-hand side of the blue box.</p> 35 <div id="div1"> 36 <span> </span> 37 <div></div> 38 </div> 39 </body> 40 </html>