I am designing a webshop which has a table layout.
My problem is that i have created rounded corners using css, and it works fine in all other browsers than IE.
Normally when i design, using divs as layout base, the css rounded corners display just fine, also in IE.
Does IE not support rounded corners for tables using CSS3?
I have put this meta tag in the top of the page, as i have read it could help - but no luck:
<meta http-equiv="X-UA-Compatible" content="IE=9" />
Anyone had this problem, and maybe a solution?
regards, jan
Example:
<style type="text/css">
.rounded_corners{border-radius:10px;}
</style>
<table>
<tr>
<td class="rounded_corners">blah blah</td>
</tr>
</table>