I\'m trying to make a column layout, with content in each, and I want them to be the same height but I\'m not able to get it to work.
One of the columns is higher th
You could do equal height columns technique:
.row {
overflow:hidden;
}
.span4 {
padding-bottom:32767px;
margin-bottom:-32767px;
}
To achieve vertically centered text content is really tricky. I would try using
.row {
display:table;
}
.span4 {
display:table-cell;
vertical-align:middle;
}
but you'll have to tweak it further and I'm not sure if it will really work out and which browsers do support it really.