【发布时间】:2015-12-05 11:43:31
【问题描述】:
我实现了一种圆形缩略图,但问题是当我的圆形缩略图进入下一行/行时,如果缩略图描述的长度文本不同,它就会开始出现白色间隙。
html:
<h2 class="border-bottom">Services</h2>
<div class="row">
<article class="service col-sm-3">
<img class="img-circle" src="images/service-1.png" alt="Icon">
<h3>CONSULTANCY</h3>
<p class="service-text">Understanding and addressing organizations’ needs</p>
</article>
<article class="service col-sm-3">
<img class="img-circle" src="images/service-2.png" alt="Icon">
<h3>IMPLEMENTATION</h3>
<p class="service-text">Identifying, Identifying, Identifying, training and supporting</p>
</article>
....
【问题讨论】:
-
请分享所有代码以重现您的问题(CSS 和 HTML)
-
唯一应用的样式是.img-circle边框半径,其余由Bootstrap生成
-
如果你为每个 4 个
articles创建新的row我认为这会解决它。
标签: html css twitter-bootstrap