I have three boxes in the footer, divs floated left with equal width. The design is responsive, so I've sized each to 33%.
But I'd like to hide one for smaller screens, this means that only two remains (50% each). How can I make sure to fill the required space without the need to declare widths for every screen size?
To make it clear, I'd like the same behavior as table cells if one is deleted: every cell fits to equal width if table width is specified. But floated divs do not.
You can hide the last child and set the boxes to 50% width in this way.