Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make rounded border in IE8 with CSS?

Tags:

html

css

I would like to know how to make rounded border in IE8. I'm using

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

for mozilla and safari.

like image 395
kst Avatar asked Nov 09 '10 04:11

kst


People also ask

How do you give a border radius to an outline in CSS?

and the border-radius needs to be larger than the border width or the interior (background) will be square. If there is no other way to radius an outline then you can use the box shadow. Box shadow follows the shape of the element.

Which CSS property can give an element rounded borders?

The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.


1 Answers

There's a jQuery plugin for that. http://jquery.malsup.com/corner/

like image 189
Matt Ball Avatar answered Oct 17 '22 18:10

Matt Ball