我正在尝试使用ie8做边界半径
这是我的代码:
position: relative;
border-radius: 8px;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CCC', endColorstr='#C!C!C!', GradientType=0 );
behavior: url(css/PIE.htc);
边界半径在这里,但不幸的是它在背景色下
我错过了什么?
最佳答案
您需要使用-pie-background
,而不是旧的IE filter
渐变。
从PIE网站
background: linear-gradient(#EEFF99, #66EE33);
-pie-background: linear-gradient(#EEFF99, #66EE33);
behavior: url(/pie/PIE.htc);
关于css - 背景颜色隐藏边框半径ie8,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36479622/