【发布时间】:2017-04-21 15:36:04
【问题描述】:
我正在使用如下所示的引导网格,并且我正在尝试集中一些 div。 (pic)。我已经尝试了所有 {margin:0 auto; width:50% } 等等,但我无法解决。集中一些 div 并不是那么困难。这里有什么问题?请不要将其标记为重复。我研究了一整天,就是搞不定。 谢谢
<header data-spy="affix" id="myHeader" class="container row">
<div class="col-sm-4 ">
<div class="centralize">
<a href="http://www.facebook.com" target="_blank">
<img class="logos" src="images/facebook.png" onmouseover="zoomin(this.id)" onmouseout="zoomout(this.id)">
</a>
<a href="http://www.twitter.com" target="_blank">
<img class="logos" src="images/twitter.png" onmouseover="zoomin(this.id)" onmouseout="zoomout(this.id)">
</a>
<a href="http://www.instagram.com" target="_blank">
<img class="logos" src="images/instagram.png" onmouseover="zoomin(this.id)" onmouseout="zoomout(this.id)">
</a>
</div>
</div>
<div class="col-sm-4">
<div class="centralize">
//Other Stuff to be centralized
</div>
</div>
<div class="col-sm-4">
<div class="centralize">
//Other Stuff to be centralized
</div>
</div>
</header>
【问题讨论】:
标签: html css twitter-bootstrap centering