line-height-applies-to-005.xht (1983B)
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 'table-column-group'</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-005-ref.xht" /> 9 10 <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'table-column-group'." /> 11 <style type="text/css"> 12 #div1 13 { 14 position: relative; 15 } 16 #div2 17 { 18 background: orange; 19 height: 1in; 20 left: 1in; 21 position: absolute; 22 top: 0; 23 width: 1in; 24 } 25 #test 26 { 27 display: table-column-group; 28 line-height: 2in; 29 } 30 #table 31 { 32 display: table; 33 table-layout: fixed; 34 } 35 #row 36 { 37 display: table-row; 38 } 39 #cell 40 { 41 background: blue; 42 display: table-cell; 43 height: 1in; 44 width: 1in; 45 } 46 </style> 47 </head> 48 <body> 49 <p>Test passes if the blue and orange squares have the <strong>same height</strong>.</p> 50 <div id="div1"> 51 <div id="table"> 52 <div id="test"></div> 53 <div id="row"> 54 <div id="cell"></div> 55 </div> 56 </div> 57 <div id="div2"></div> 58 </div> 59 </body> 60 </html>