【发布时间】:2014-06-16 06:08:50
【问题描述】:
我想要具有不同大小和不同文本数量的图像的缩略图。但我希望它们都具有相同的大小。喜欢这个example from the Bootstrap site。
下面是我目前拥有的代码,带有demo on jsFiddle。
我有不同的图像尺寸,所以这会坏掉。 Bootstrap 可以做到吗?
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<h3>
Fading a RGB LED on BeagleBone Black
</h3><img src="https://learn.adafruit.com/system/guides/images/000/000/322/medium310/overview_web.jpg?" alt="Sample Image">
<div class="caption">
<p>In this tutorial, you will learn how to control the color of an RGB LED using a BeagleBone Black and Python.</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<h3>
Measuring Light with a BeagleBone Black
</h3><img src="https://learn.adafruit.com/system/guides/images/000/000/316/medium310/overview_web.jpg?" alt="Sample Image">
<div class="caption">
<p>In this tutorial, you will learn how to connect a photoresistor to a BeagleBone Black. The tutorial can also be used for other resistive sensors such as FSRs or SoftPots.</p>
</div>
</div>
</div>
【问题讨论】:
标签: jquery html css twitter-bootstrap