How do you make DIV's that are floated left next to each other not wrap when the browser is re-sized such that the viewport becomes smaller?
div {
float: left;
}
For example when the browser is fully maximized the div
s line up like this:
|div| |div| |div| |div| |div| |div| |div| |div|
But when the browser re-sized smaller this happens:
|div| |div| |div| |div| |div|
|div| |div| |div|
How can I make the div
s not wrap when the browser is re-sized smaller?