Re: Another question about anonymous table objects

 > <!DOCTYPE html>
 > <html>
 >    <body>
 >      <div style="display: table">
 >        <div style="display: table-row-group">
 >          <div id="c1" style="display: table-cell">1</div>
 >          <div id="b" style="display: block">2</div>
 >          <div id="c2" style="display: table-cell">3</div>
 >        </div>
 >        <div style="display: table-row-group">
 >          <div style="display: table-row">
 >            <div style="display: table-cell">First</div>
 >            <div style="display: block">Second</div>
 >            <div style="display: table-cell">Third</div>
 >          </div>
 >        </div>
 >      </div>
 >    </body>
 > </html>
...
 > I don't have an IE8 beta on hand to test how that renders.

Someone was kind enough to check for me, and IE8 renders this like 
Webkit, Gecko, and Presto: the two cells and the block end up in a 
single row.

-Boris

Received on Monday, 9 March 2009 14:16:12 UTC