开发者

Chrome image border around rounded corners disappearing

So, this is the problem: http://bildr.no/view/927562

A closer look: http://bildr.no/view/927563

As you can see, the border for each corner turns invisible. This is the CSS code for the image:

#contentImage {
  float: left;
  border: 1px solid #C4C4C4;
  border-radius: 8px;
  margin-right: 25px;
}

<img src="i开发者_运维技巧mages/image.jpg" id=contentImage" />

Any help would be greatly appreciated :-)


This is an unfortunate webkit bug. The only workaround that I know about is converting your img into a div and then putting the img as a background image:

#contentImage {
  background: url('http://placehold.it/100x100') top left no-repeat;
  width: 100px;
  height: 100px;
  border: 1px solid #000; 
  border-radius: 8px;
  margin-right: 25px;
}

http://jsfiddle.net/ybPKJ/

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜