Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Border radius in IE is not working

I need to make round corners, when i am trying like this its working in firefox and chrome but not in IE.

#tab_labels div {
   border-top-right-radius:4px;
   border-top-left-radius:4px;
   -moz-border-radius-topleft: 4px;
   -moz-border-radius-topright: 4px;
}
like image 472
Noname Avatar asked Dec 28 '22 11:12

Noname


2 Answers

Currently, IE 9 and 10 are the only versions of IE that support border-radius. IE 8 and below do not support border-radius. You'll need some 3rd party help, like CSS3Pie, to do that.

like image 90
Damon Bauer Avatar answered Jan 13 '23 11:01

Damon Bauer


If you really want to start using CSS3.

You should really know that IE sucks.

Actually not only for CSS3. Just generally IE sucks.

So IE (up to 9) doesn't support rounded corners by default.

You should either use images / resort to some 3rd party stuff.

like image 37
PeeHaa Avatar answered Jan 13 '23 10:01

PeeHaa