本文介绍了内联块元素和块元素之间的空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这两个div之间有什么空间?我甚至删除了html中的空格。

What is that space between these two divs? I even removed the white space in html.

<div id="asd"></div><div id="psd"></div>

现在,如果第一个div(asd)有一些文本,空格就会消失; WHAT?

Now, if the first div (asd) has some text in it, the space is gone; WHAT?

<div id="asd">a</div><div id="psd"></div>

(我想了解

Add vertical-align:bottom (or text-bottom, or middle, ortop, …) to it, and the space will be gone: http://jsfiddle.net/9thpuvwa/2/

这篇关于内联块元素和块元素之间的空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 10:17