使用时如何制作如下display: inline-block;
+----------+ heading text here
| image + some paragraph text
+----------+
+----------+ heading text here
| image + some paragraph text
+----------+
hmtl 我用过...
<div class="videos">
<div><img src=""><h3>heading text here</h3><p>some paragraph text</p></div>
<div><img src=""><h3>heading text here</h3><p>some paragraph text</p></div>
</div>
我用过的css...
.videos{
display: inline-block; /* i have to use this as other elements to be inline-block */
}
.videos img{
float: left;
}
我的问题的解决方案是“某些段落文本”不应低于图像。或者有什么方法可以得到吗?
编辑
演示为什么即使设置后第二个标题和文本也会向右移动text-align: left !imortant;