简体   繁体   English

弯角IE 7,8问题

[英]Curved corners IE 7,8 Issue

i tried to set border radius to a td element, but it isn't work on IE7 and IE8 i tried all possible solutions but it still not working here's my css classs : 我尝试将边界半径设置为td元素,但在IE7和IE8上不起作用,我尝试了所有可能的解决方案,但仍无法正常工作,这是我的CSS类:

padding: 5 5 5 5;
background-color: gray;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 0 5px 5px #888;
-webkit-box-shadow: 0 0 5px 5px#888;
box-shadow: 0 0 5px 5px #888;
zoom: 1;
filter: alpha(opacity=70);
opacity: 0.7; 
behavior: url(../Bin/PIE.htc);

i tried to use PIE.js and it also not working. 我试图使用PIE.js,它也无法正常工作。

IE7 and IE8 don't support CSS3 rounded corners. IE7和IE8不支持CSS3圆角。 You will need to look to other IE specific solutions if you want to emulate this. 如果要模拟此,则需要查看其他IE特定的解决方案。

How to create rounded corners in ie 8 and < is one method using .htc controls for IE. 如何在ie 8和<中创建圆角是使用IE的.htc控件的一种方法。

I need to add that no solution to your problem I have ever found is 100% they all have drawbacks and can never have the full functionality that CSS3 offers. 我需要补充一点,对于您所发现的问题,没有任何解决方案是100%它们都具有缺点,并且永远无法拥有CSS3提供的全部功能。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM