下面是我使用 css 将标题的顶部两个角圆角的代码。IE 快把我逼疯了。我的页面在所有其他浏览器上看起来都很好。我以为IE9支持弯角
<style type="text/css">
#header {
height: 70px;
font-size: 2em;
color: #fff;
padding: 40px 0 0 40px;
background: #0B3A68 no-repeat 15px 11px;
position: relative;
font-style: italic;
font-family: Arial;
border-top-left-radius: 40px;
border-top-right-radius: 40px;
}
</style>
<div id ="header">
test
</div>