I have a layout wherein the sidebar is fixed and the main contents container is fluid.
<div id="contents" class="wrapper group">
<aside id="sidebar">
<!-- sidebar stuff here -->
</aside>
<section id="main-contents">
<!-- content here -->
</section>
</div>
When I apply the class "group" to the ul of feeds, the ul has extra pixels added to its height, it doesn't just wrap the li inside it. But when I delete the sidebar, this extra height isn't shown. I noticed that the bottom of the ul is aligned with the bottom of the sidebar.
I don't know why it behaves this way. Help on this would be appreciated.
Thank you :)
and the
– dork Jun 14 '13 at 09:08. Why is that? (not talking about the margin, you can remove the margin and still see some 2-3pixels of space between them)