标签:pre block 随笔 inf ges res 学习随笔 居中 com
图片
响应式图片
在 Bootstrap 版本 3 中,通过为图片添加
.img-responsive
类可以让图片支持响应式布局。其实质是为图片设置了max-width: 100%;
、height: auto;
和display: block;
属性,从而让图片在其父元素中更好的缩放。如果需要让使用了
.img-responsive
类的图片水平居中,请使用.center-block
类,不要用.text-center
。 请参考助手类章节 了解更多关于.center-block
的用法。
<img src="..." alt="..." class="img-rounded"> <img src="..." alt="..." class="img-circle"> <img src="..." alt="..." class="img-thumbnail">
效果:
标签:pre block 随笔 inf ges res 学习随笔 居中 com
原文地址:https://www.cnblogs.com/EatMedicine/p/10115504.html