以下は、css を使用してヘッダーの上 2 隅を丸めるコードです。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>