IE once again proved its incompetency against other web browsers, is there no other way to round the corners of the table if putting a background color as its header except usign an image? These are my codes:
CSS
.table1
{
-moz-box-shadow: 1px 0 5px #888;
-webkit-box-shadow: 1px 0 5px #888;
box-shadow: 1px 0 5px #888;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-align:justify;
margin: 1em auto;
padding: 0;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
overflow: hidden;
border: 1px thin;
border-collapse: separate;
}
.color
{
background-color:#66F;
}
HTML
<table class="table1" style="margin-left:18px"align="left" width="400" border="0">
<tr>
<td class="color" height="25">
</td>
</tr>
<tr>
<td style="padding-left:20px; padding-right:20px; margin-top:20px" height="285"><span style="font-weight:bold; font-size:16px">Some text</span> Some text<br /><br />
<span style="font-weight:bold; font-size:16px">Some text</span> Some text</td>
</tr>
</table>