Hi guys!. What do you think if we include the following rules into the
blueprint code:

.equal-height
{
    overflow:hidden;
}

.equal-height > div {
   padding-bottom:32767px;
   margin-bottom:-32767px;
}

Thus, if we have the following code:

<div class="container equal-height">
    <div class="column span-4">
        <p>This is the sidebar</p>
    </div>
    <div class="column span-16">
        <p>Here goes the main content</p>
    </div>
    <div class="column span-4 last">
       <p>This is the right column</p>
    </div>
</div>

We may achieve equal height multicolumn layouts. What do you think?

-- 
You received this message because you are subscribed to the Google Groups 
"Blueprint CSS" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/blueprintcss?hl=en.

Reply via email to