bootstrap 图片自适应

用bootstrap框架实现图片自适应:

如果是在页面上插入图片,就直接加上 class="img-responsive"

如果是在内容页里面的话,直接用js给每个img加上属性就可以了。

$(".setting img").addClass("img-responsive center-block"); //center-block 图片水平居中

在 Bootstrap 版本 3 中,通过为图片添加 .img-responsive 类可以让图片支持响应式布局。其实质是为图片设置了 max-width: 100%;、 height: auto; 和 display: block; 属性,从而让图片在其父元素中更好的缩放。

谷歌应用翻译:: 划词翻译
sublime Text 插件 空格提醒: Trailing Spaces

你可能感兴趣的:(bootstrap 图片自适应)