我有IE的跨浏览器问题。在该视频播放按钮中包含IE中不支持的border-radius。我使用过video.js文件。
CSS我用来解决这个问题:
-web kit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
我试过这个CSS代码但没有解决这个问题:
-ms-border-radius: 25px;
答案 0 :(得分:0)
您可以尝试将PIE.htc添加到您的网站。特别是如果你的目标是IE< 9。
答案 1 :(得分:0)
这里试试这个
Internet Explorer:
#yourId , * html #yourId , *+html #yourId {
-web kit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
border-radius: 25px\9;
border-radius: 25px\0/;
}
有效吗?