在制作网页的很多时候为了页面美观都需要图片能够做到上下居中、左右居中。网上现实的方式方法也有很多,这里分享我经常使用的一种方法。
实现方法
// HTML代码
<div class="row">
<div class="col-xs-3">
<img src="/public/empty_200x100.png" class="imgbg" style="background-image:url('/uploads/demo.jpg');">
</div>
</div>
// CSS 代码
<style type="text/css">
.imgbg{
width:100%;
background-color: #ebf2f9;
background-position: center;
background-size:contain;
background-repeat: no-repeat;
}
</style>