CSS内联块问题 – 被推下的元素

前端之家收集整理的这篇文章主要介绍了CSS内联块问题 – 被推下的元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Why is this inline-block element pushed downward?5个
演示: http://jsfiddle.net/q4uNj/
所以这里的问题是:我不知道为什么第二个div – class =“other” – 被推下来.

解决方法

你可以使用css-property vertical-align.
将它添加到“其他”规则,它将会没问题.
.other {
    display:inline-block;
    vertical-align:top;
    height:32px;
    margin:2px;
}

或者你可以使用下面的建议,但是不要忘了在#toolbar中添加“overflow:hidden”.

原文链接:https://www.f2er.com/css/216860.html

猜你在找的CSS相关文章