CSS - border-radius doesn't display in IE6/7/8

前端 未结 4 1909
青春惊慌失措
青春惊慌失措 2021-01-18 12:23

I\'m using the following CSS to achieve a rounded border on my DIV:

border: 1px solid #999; 
border-radius: 6px; 
-ms-border-radius: 6px; 
-moz-border-radius         


        
4条回答
  •  孤城傲影
    2021-01-18 13:13

    IE does not support border-radius.

    From IE8 Expert Zone Chat:

    Chris Wilson [MS] (Expert):

    Q: [9] Any plans to support CSS' border-radius, eg. -ms-border-radius:5px; ? Firefox and Safari have -khtml- and -moz- implementations which we can use to do rounded corners without images or sprites, and improve performance ie. http://preview.tinyurl.com/9y3tfn/

    A: border-radius is high on the wish list, but will not be in IE8.

提交回复
热议问题