我刚刚注意到我的工具栏的边框半径在 ie9 中不起作用。奇怪的是,有一个盒子阴影会弯曲,所以我不知道它发生了什么。在 IE 中,实际的工具栏 div 不是弯曲的,但它的盒子阴影是弯曲的。在所有其他浏览器中一切都很好,我知道 ie9 支持边框半径。
无论如何,CSS在下面。我已经去掉了所有的前缀和不需要的样式,所以只有盒子阴影和边框半径。这是一个包含所有样式的jsfiddle。
更新
弄清楚出了什么问题。渐变已经停止在 IE 中工作的边界半径形式,所以我现在将在 IE 中禁用它。如果有人有办法保留它们和边界半径,那就太好了。我添加了渐变样式。
.membersbar {
width:98%; background-color:#313131;
height:30px; padding-top:5px;
border-bottom-right-radius:2em;
position:fixed;
top:0;
box-shadow:0 0 5px 5px #999;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#313131', endColorstr='#202020');
background: -webkit-gradient(linear, left top, left bottom, from(#313131), to(#202020));
background: -moz-linear-gradient(top, #313131, #202020);
}
这是head里的相关信息;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>