I have a problem with the border-radius in chrome this is my code:

img{
border-radius: 24px;
border: 2px solid #c7c7c7;                 
-moz-border-radius:24px; 
-webkit-border-radius: 24px;
}

On mozzila it works fine, but on chrome it looks funny... On mozzila I can see a circle bordering my image, but on chrome the circle crops the borders and all i can see are straight line

a screenshot: http://postimage.org/image/27turq0mc/

can you help?

link|improve this question

25% accept rate
can you give an example jsfiddle.net/sandeep/Q55C8/5 – sandeep Oct 12 '11 at 12:01
I can't see the image... – BoltClock Oct 12 '11 at 12:13
feedback

2 Answers

up vote 2 down vote accepted

this is probably a chrome bug. A solution could be to wrap the img with a div and make the following css:

img{                
    -moz-border-radius:24px; 
    -webkit-border-radius: 24px;
    border-radius: 24px;
    display:block;
}
div {
    border: 2px solid #c7c7c7; 
    border-radius: 24px;
    -webkit-border-radius: 24px;
    width:40px; /* the width of image */
    height:40px; /* the height of image */
}

Demo: http://jsfiddle.net/EnmMp/1/

link|improve this answer
feedback

Try doing it on a background image instead of on a html img element, as some img elements dont work with border radius (yet i gueass).

div.something{
background-image:url(something.png);
border-radius: 24px;
border: 2px solid #c7c7c7;
border-radius: 24px;
}
link|improve this answer
1  
my images are generated by a php function... and i have to work on the img as it is... – Dorel Oct 12 '11 at 12:14
then you have a problem as the border is not alowed to cut a image element, but you could try to dynamicaly changing the background with php, and as im not a php guy here is a link drupal.org/node/98246 – Thomas Andreè Lian Oct 12 '11 at 12:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.