本文介绍了两个浮动div并排,高度相同(跟随)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的上一个问题已在这里回答:

My previous question was answered here: Two floating divs side by side, same height

我的问题:有人提供了一个例子:

My problem: Someone supplied an example here: http://jsfiddle.net/s7ufg/18/

如何清除图片下方的额外空白

How can I remove the extra space below the image?

推荐答案

将vertical-align:top添加到您的img规则中:

Add vertical-align:top to your img rule:

img {
    max-width: 100%;
    height: auto;
    width: auto;
    vertical-align:top;
}
​

jsFiddle example

这篇关于两个浮动div并排,高度相同(跟随)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 02:35