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

前端 未结 4 1911
青春惊慌失措
青春惊慌失措 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:09

    there is no -ms-border-radius internet explorer doesn't support it.

    The 'newest' thing microsoft has to say about rounded corners is this old table+images hack titled 'Staying Ahead of the Curve' ;-)

提交回复
热议问题