Bootstrap自带类让图片水平居中

最近在练习Bootstrap的时候需要把图片水平居中,这里要分为两种情况:

  1. 图片使用了.img-responsive类
  • 需要在.img-responsive类后添加.center-block类,like this:

    <img class="img-responsive center-block" src="..." />
    
  1. 未使用.img-responsive图片响应式类
  • 直接使用.text-center类,like this:

    <p class="text-center"><img src="..."></p>
    

这样,Bootstrap的图片水平居中就实现了~


Bootstrap自带类让图片水平居中
http://yanziyu.fun/2016/11/03/img-responsive/
作者
Leo Yen
发布于
2016年11月3日
许可协议