我保留了图片和一些文字,如下所示:
<div class="container">
<img src="http://www.menucool.com/slider/prod/image-slider-4.jpg" height="40" width="200" class="img-responsive" alt="Responsive image">
<h5>S o m e t e x t h e r e</h5>
</div>
显示图像和文本之间的距离。
h5
的Css样式位于底部,是css块。如何在图像下方调整它?
答案 0 :(得分:1)
使用此CSS规则:
h5{
margin-left:0;
}