문제

In IE9, which border radius property will work?

 border-radius:20px
-webkit-border-radius: 20px;
-moz-border-radius: 20px;

border-radius:20px or ms-border-radius:20px

도움이 되었습니까?

해결책

다른 팁

border-radius will work. In fact MS made a big deal about how they're the only browser that actually supports the 'standards' while all the other vendors uses specific prefixes.

/me rolls eyes.

If you're reading this page then may also wish to consider include khtml-border-radius for compliance with Konqueror so it looks like:

 -khtml-border-radius: 20px;
 -moz-border-radius: 20px;
 -webkit-border-radius: 20px;
 border-radius:20px;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top