I have a fluid layout using Twitter\'s bootstrap, wherein I have a row with two columns. The first column has a lot of content, which I want to fill the span normally. The
You can use flex:
@media (min-width: 768px) { .row-fluid { display: flex; align-items: flex-end; } }