我正在尝试正确对齐网页头部的元素。
标题div中有三个元素:
所有三个元素都应该在标题div的底部对齐。
我一直在努力解决这个问题,但似乎没有任何效果。你能帮忙吗?谢谢!
答案 0 :(得分:0)
<div style="float: right;">
<ul>
<li>Menu item</li>
</ul>
</div>
<div style="float: left;">
<a href="/"><img style="border: 0;" src="something.png" /></a>
</div>
<div style="width: 300px; margin: 0 auto;">
Search box
</div>
只是一个快速的模型。
答案 1 :(得分:0)
更新:使用table / table-cell技巧允许vertical-align: bottom;
您需要使用<div>
css规则将您的manu,徽标和搜索框包装到display: table-cell;
。
标记:
<div class="table header">
<div class="table-cell">
<div class="logo"> </div>
</div>
<div class="table-cell">
<div class="searchbox"> </div>
</div>
<div class="table-cell">
<div class="menu"> <br/><br/><br/><br/><br/><br/><br/><br/></div>
</div>
</div>
和css:
.table {
display: table; /* our outer contaner should behave like table; */
width: 100%; /* set width to 100% */
}
.table-cell {
display: table-cell; /* our internal wrapper should behave like table cell to allow vertical-align */
vertical-align: bottom; /* align all elements vertical */
background: yellow; /* for debug purposes */
}
.logo {
float: left;
width: 100px;
background: green;
}
.menu {
float: right;
width: 100px;
background: red;
}
.searchbox {
margin: 0 auto;
width: 100px;
background: blue;
}