- Set the three elements' container (#footer-gradient)
display: table
- And set the elements themselves (.col)
display: table-cell
- Remove the floating.
- Success.
#footer-gradient {
display: table;
}
#footer-gradient .col {
display: table-cell;
float: none;
}