2011-08-02 13 views

答えて

3

これは、と-webkit...がfirefoxとsafari/chromeのプロパティです。

また、border-radiusはCSS3プロパティで、IE8ではサポートされていません。

1

IE3のCSS3プロパティborder-radiusnot supportedです。

可能であれば、このような問題に対処してProgressive Enhancementアプローチをとることを強くお勧めします。

1

PIE-http://css3pie.comをご覧ください。 border-radiusのようなほとんどのCSS3プロパティをサポートしており、IE7、IE8、IE9で動作します。 CSS3準拠のブラウザには税金はかかりません。

あなたがウェブサイト上でそれについての詳細を読むことができますが、基本的に、それは次のように動作します。

div#foo { 
-webkit-border-radius: 8px; 
-moz-border-radius: 8px; 
border-radius: 8px; 
behavior: url(/PIE.htc); 
} 
関連する問題