Border-radius for IE7 & IE8

后端 未结 2 1941
轮回少年
轮回少年 2021-01-15 18:42

I am working in cakephp and want to do some css style. The problem is with Internet Explorer. Currently i want to make css border-radius work properly in IE7 & IE8. The

相关标签:
2条回答
  • 2021-01-15 18:50

    Please take a look at http://css3pie.com/documentation/known-issues/

    You will probably need to add position: relative; to the div or give it a z-index.

    0 讨论(0)
  • 2021-01-15 18:59

    It's because you need to create that element with javascript :

    document.createElement("element");
    
    0 讨论(0)
提交回复
热议问题