为什么我的内联块div没有正确对齐?

时间:2014-02-02 15:20:17

标签: html css

#inlineBLock1, #inlineBLock2{
    display:inline-block;
    width:200px;
    height:100px;
    border: 1px dashed #cccccc;
}

<div id="inlineBLock1">
    <img src="http://www.emec.org.uk/wp-content/uploads/2013/10/Aquamarine-Powers-Oyster-800-wave-energy-machine-in-operation-Image-Aquamarine-Power-300x199.jpg" width="50" height="50">
</div>
<div id="inlineBLock2">
    <p>Not aligned :(</p>
</div>

例如,请参阅http://jsfiddle.net/6FGHd/13/

似乎将图像插入其中一个div会破坏对齐。

有什么想法吗?感谢。

1 个答案:

答案 0 :(得分:2)

你的答案就在你的问题中。

为什么我的内联块div 对齐不正确?

您申请:

vertical-align: top;

Demo:)