I am trying to make this layout with Twitter Bootstrap (only the boxes) :

Basically, it is a youtube embedded video and two equal size boxes to its right.
I have this right now (haml) :
.row
.span8
/ embedded code
.span4
/ I need to put two boxes here... how?
You can stack the
.span*blocks inside a.row-fluidcontainer which you can then nest inside anotherspan*block to create the effect you’re looking for. Try this for example:HTML
Notice how i nested the two side blocks one on top of each other contained within a
.row-fluidcontainer inside a another.span*block t stack them up.Now with a little CSS you we can stretch the stacked
.span*blocks to the width of the parent block to create a column:CSS
Demo: http://jsfiddle.net/k27S5/show/
Don’t know much of HAML but after taking a look at the documentation the setup should look something like this:
HAML