0

下面是我使用 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>
4

1 回答 1

0

尝试使用边界生成器,它可能会有所帮助:

http://border-radius.com/

于 2012-07-12T18:29:08.867 回答