我有一个布局,其中侧边栏是固定的,主要内容容器是流动的。
<div id="contents" class="wrapper group">
<aside id="sidebar">
<!-- sidebar stuff here -->
</aside>
<section id="main-contents">
<!-- content here -->
</section>
</div>
当我将“组”类应用于提要的ul时, ul的高度增加了额外的像素,它不只是将li包裹在其中。但是当我删除侧边栏时,不会显示这个额外的高度。我注意到ul的底部与侧边栏的底部对齐。
我不知道它为什么会这样。对此的帮助将不胜感激。
谢谢 :)