ホームページ  >  記事  >  ウェブフロントエンド  >  border-radius と IE_html/css_WEB-ITnose の互換性

border-radius と IE_html/css_WEB-ITnose の互換性

WBOY
WBOYオリジナル
2016-06-24 11:20:29950ブラウズ

現在、Firefox、Opera、Chrome などの主流ブラウザは、IE8 以前を除き、すべて border-radius 属性をサポートしています。

解決策は、次を追加することです: 動作: url(ie-css3.htc);

ie-css3.htc 価格を問い合わせる ダウンロード アドレス: http://pan.baidu.com/ s/1hsGt8e4

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>border-radius兼容IE</title>    <style>        .d1{            width: 5em;            height:5em;            background: #e4393c;            /*防止浏览器版本过低*/            -moz-border-radius: 50%;            -webkit-border-radius: 50%;            border-radius: 50%;            /*解决IE*/            behavior: url(ie-css3.htc);        }    </style></head><body>    <div class="d1"></div></body></html>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。