Blueprint CSS3, 3 column layout

267 views Asked by At

I want to create a Blueprint CSS3 layout. with 3 columns.

I have the following:

<div id="hd" class="span-24 last">
        <div class=" span-7">
            1
        </div>
        <div class=" span-10">
            2
        </div>
        <div class=" span-7 bp-last">
            3
        </div>
</div>

problem is the 3rd column is under the 1st. Why is that? thx

2

There are 2 answers

0
Lamariffic On

That means your column widths plus margins add up to more than the total width of the hd div. Please post your css code also.

0
smoreno On

The class applied in 3th div should be "last", not "bg-last"