鍍金池/ 問答/云計算  HTML5  HTML/ 對border-radius在ie的兼容

對border-radius在ie的兼容

國內(nèi)展會

a {

display: inline-block;
width: 99px;
height: 30px;
background: #ab95ff;
border-radius: 30px;
font-family: "宋體";
font-size: 12px;
text-align: center;
line-height: 30px;
color: black;
margin-right: 25px;

}

回答
編輯回答
刮刮樂

去網(wǎng)上找找插件,IE低版本不支持border-radius(包括其它CSS3屬性)

這類問題直接去網(wǎng)上搜索比在這兒提問好且快

2017年8月13日 20:22
編輯回答
不舍棄

我的博客里面有讓IE支持CSS3的詳解

http://blog.csdn.net/zh_rey/a...

IE8以及更早的版本不支持CSS3的一些新屬性,本文主要是通過CSS3 PIE這個插件讓IE早期版本支持CSS3,使用CSS的behavior行為,可以調(diào)用此文件,然后讓IE也能實現(xiàn)一些常見的CSS3效果,例如我們常用到的圓角(border-radius),盒陰影(box-shadow),背景漸變(gradient),多圖片背景(multiple background images)等一些新屬性。

2018年6月28日 14:31