0

我无法让 IE9 识别我的 CSS 边框样式:border-radius: 10px;. 我也尝试过使用<meta http-equiv="X-UA-Compatible" content="IE=9" />,但它只会弄乱我的背景(它会从底部的背景中切出一块)。

<html>
<style>
.outer{
    background: url('http://v4m.mobi/php/i/images/grey_background.jpg');
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 100%;


.inner{
margin: 0 auto;
border: 3px solid #444444;
vertical-align: middle;
-moz-border-radius: 10px; 
-webkit-border-radius: 10px;
border-radius: 10px;  /* <-- This line */
background-color: #999999;
}

.inner td{
width: 213.33px;
height: 340px;
}
</style>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" style="margin: 0; 
 padding: 0; border: none">

<div class="outer">
<div style="padding-top: 5%;"></div>
<table class="inner" cellspacing="10">
    <tr>
        <td bgcolor="#ffffff">referferf$<br/>dcsdcsd</td>
    </tr>
</table>
</div>
</body>
</html>
4

1 回答 1

1

唯一的解决方案是使用标准渲染模式——添加<!doctype html>X-UA-Compatible标题。如果它破坏了您网站的其他部分,那只是意味着您应该重写您的代码,因为它已针对 IE 的 quirks 模式进行了优化。

于 2012-04-04T17:59:59.297 回答