注意:请阅读与其他主题略有不同的说明:
我的模板中有一个container
div在该容器中我有六个div所以我想用以下方式显示它们居中对齐。
container
的中心)container
的中心)container
的中心)
<div class="container">
<div class="box_container">
<img src="../product_img_10.png">
<a href="#" class="product_title">TITLE FOR HIM</a>
</div>
<div class="box_container">
<img src="../product_img_10.png">
<a href="#" class="product_title">BOXES FOR HER</a>
</div>
<div class="box_container">
<img src="../product_img_10.png">
<a href="#" class="product_title">BOXES FOR COUPLES</a>
</div>
</div>
&#13;
我很想知道是否有任何类可以解决此问题或需要编辑一些LESS
文件代码。提前致谢。
答案 0 :(得分:1)
我不确定我是否完全理解这个问题(可能会添加一个模拟图片?),但是下面呢?
/* I'm not sure what you're stylings are, but just taking a stab */
.box_container { text-align: center; }
.box_container img { display: block; }
.box_container img, .box_container p { margin: auto; }
&#13;
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="box_container">
<img src="http://placehold.it/50" alt="" />
<a href="#" class="product_title">TITLE FOR HIM</a>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="box_container">
<img src="http://placehold.it/50" alt="" />
<a href="#" class="product_title">BOXES FOR HER</a>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="box_container">
<img src="http://placehold.it/50" alt="" />
<a href="#" class="product_title">BOXES FOR COUPLES</a>
</div>
</div>
</div>
</div>
&#13;
以上: