内部边框超图像CSS?

前端之家收集整理的这篇文章主要介绍了内部边框超图像CSS?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用css在我的内容div中的所有图像上添加一个白色边框。页眉和页脚div区域中的图像不应受到影响。我该如何实现?请参见下面的示例图。在网页上有不同大小的图像。

查看图片

解决方法

你可以做到这一点,而不需要额外的元素或伪元素:

http://cssdeck.com/labs/t6nd0h9p

img {
  outline: 1px solid white;
  outline-offset: -4px;
}

IE9& 10不支持outline-offset属性,否则支持是好的:http://caniuse.com/#search=outline

不需要知道图像尺寸的替代解决方案:

http://cssdeck.com/labs/aajakwnl

<div class="ie-container"><img src="http://placekitten.com/200/200" /></div>

div.ie-container {
  display: inline-block;
  position: relative;
}

div.ie-container:before {
  display: block;
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid white;
}

img {
  vertical-align: middle; /* optional */
}
原文链接:https://www.f2er.com/css/218679.html

猜你在找的CSS相关文章