私は ボーダー半径の使用だけでなく、ボックスシャドウ
doesnの」を作るdiv要素を持っていますmodernizr.jsはネイティブにこれをサポートしていますか?
はあなたがこのようにCSSを与えることができ、ID = "テスト"
<div id="test">
Hello HTML5 CSS3
</div>
とあなたがしたいスタイルのdivを持っていると仮定します。
div#test{
height: 50px;
width: 200px;
border: 1px solid #CCC;
}
.borderradius div#test {
border-radius: 4px 4px 0 0;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
}
.no-borderradius div#test {
/*add style rules for css2 here*/
}
.boxshadow div#test {
box-shadow: #666 1px 1px 1px;
-moz-box-shadow: #666 1px 1px 1px;
-webkit-box-shadow: #666 1px 1px 1px;
}
.no-boxshadow div#test {
/*add style rules for css2 here*/
}