input
元素似乎拖下了父div
。为什么会这样?我该如何解决?
html
<div class="main">
<div class="one">
</div>
<div class="two">
<input type="text" /> <!-- Without this input, the page looks fine -->
</div>
<div class="three">
</div>
</div>
css
.main>div {
display: inline-block;
height: 330px;
}
.one {
width: 18%;
background-color: #fbfbfb;
}
.two {
margin-left:10px;
width: 50%;
border: 2px solid #ddd;
}
.three {
margin-left: 10px;
width: 20%;
background-color: #bbb;
border: 5px dashed #ddd;
}
答案 0 :(得分:5)
这是因为你给了display: inline-block;
。要解决这个问题,请提供:
vertical-align: top;
预览强>
原因:默认情况下,内联块元素往往与baseline
对齐。
答案 1 :(得分:1)
添加
vertical-align: text-top;
到.main>div
。
答案 2 :(得分:0)
您可以修复此问题,将float: left;
添加到.one
和.two