line-height-applies-to-008.xht (1709B)
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 'inline'</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 <link rel="match" href="line-height-applies-to-001-ref.xht" /> 9 10 <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'inline'." /> 11 <style type="text/css"> 12 #div1 13 { 14 background: blue; 15 position: relative; 16 width: 2in; 17 } 18 #div2 19 { 20 display: inline; 21 line-height: 1in; 22 } 23 #div3 24 { 25 background: orange; 26 height: 2in; 27 left: 1in; 28 position: absolute; 29 top: 0; 30 width: 1in; 31 } 32 .box 33 { 34 background: blue; 35 height: 0.5in; 36 width: 1in; 37 } 38 </style> 39 </head> 40 <body> 41 <p>Test passes if the blue and orange rectangles have the <strong>same height</strong>.</p> 42 <div id="div1"> 43 <div class="box"></div> 44 <div id="div2"> </div> 45 <div class="box"></div> 46 <div id="div3"></div> 47 </div> 48 </body> 49 </html>