The following displays correctly in FireFox but not in Internet Explorer 8. Have read in many places including W3 and Microsoft that IE 8 supports table styles now.
It's just a simple div table consisting of two rows with two cells in each.
Is there a trick to get this to work correctly in IE 8?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Div Table Test</title>
</head>
<body>
<div style='display:table; width:500px;'>
<div style='display:table-row; background-color:lightgray;'>
<div style='display:table-cell; background-color:lightgreen;'>1222</div>
<div style='display:table-cell; '>Some Data</div>
</div>
<div style='display:table-row; background-color:lightgray;'>
<div style='display:table-cell; background-color:lightgreen;'>1223</div>
<div style='display:table-cell; '>Some Data</div>
</div>
</div>
</body>
</html>