2つの順序付けられていないリストを含むdivがあります。
Firebugを使用すると、順序付けされていない各リストの高さ([レイアウト]タブに表示)はそれぞれ35pxと38pxですが、親divの高さは41pxです。
これは何が原因でしょうか?
これは、内部開発サーバー上にあるため、リンクできないコードの簡略化された例です!:
<div class="actions">
<ul class="first-ul"></ul>
<ul class="second-ul"></ul>
</div>
header.header .actions ul {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
vertical-align: bottom;
}
header.header .actions ul.first-ul {
float: left;
}