Larry314
08-20-2012, 04:04 PM
I've read several sites about how to get round corners in IE (works fine in Firefox, Safari and Chrome. Works partially in Opera.)
META tags (2 because of different places I read info)
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<meta http-equiv="X-UA-Compatible" content="IE=9" >
CSS (partial)
td.roundcorners { border-radius: 5px; border-color: #CCC; padding-left: 5px; }
table.allround { border-radius: 15px; padding-left: 5px; } /* only one table used */
table.upperround { border-top-left-radius:15px; border-top-right-radius:15px; padding-left: 5px; } /* two tables used adjacent to each other because of columns disparity */
table.lowerround { border-bottom-left-radius:15px; border-bottom-right-radius:15px; padding-left: 5px; }
input, select, textarea { border-radius: 5px; border-color: #0000cd; padding-left: 5px; }
Go to www.basketbasics.com then click on Reed & Cane (the only one I have the META tags in for the moment).
In Firefox it has all the rounded corners.
In IE9 it doesn't. When I go to developer tools (F12) and the CSS tab it shows the CSS is loading but the border-radius is ignored.
?
META tags (2 because of different places I read info)
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<meta http-equiv="X-UA-Compatible" content="IE=9" >
CSS (partial)
td.roundcorners { border-radius: 5px; border-color: #CCC; padding-left: 5px; }
table.allround { border-radius: 15px; padding-left: 5px; } /* only one table used */
table.upperround { border-top-left-radius:15px; border-top-right-radius:15px; padding-left: 5px; } /* two tables used adjacent to each other because of columns disparity */
table.lowerround { border-bottom-left-radius:15px; border-bottom-right-radius:15px; padding-left: 5px; }
input, select, textarea { border-radius: 5px; border-color: #0000cd; padding-left: 5px; }
Go to www.basketbasics.com then click on Reed & Cane (the only one I have the META tags in for the moment).
In Firefox it has all the rounded corners.
In IE9 it doesn't. When I go to developer tools (F12) and the CSS tab it shows the CSS is loading but the border-radius is ignored.
?