Responsive image align center bootstrap 3

前端 未结 18 1187
半阙折子戏
半阙折子戏 2020-11-29 14:16

I do a catalog using Bootstrap 3. When displayed on tablets, the product images look ugly because of their small size (500x500) and a width of 767 pixels in the browser. I w

18条回答
  •  感情败类
    2020-11-29 15:16

    The more exact way applied to all Booostrap objects using standard classes only would be to not set top and bottom margins (as image can inherit these from parent), so I am always using:

    .text-center .img-responsive {
        margin-left: auto;
        margin-right: auto;
    }
    

    I have also made a Gist for that, so if any changes will apply because of any bugs, update version will be always here: https://gist.github.com/jdrda/09a38bf152dd6a8aff4151c58679cc66

提交回复
热议问题