I need to create a container DIV style that contains multiple other DIV\'s. It is asked that these DIV\'s wouldn\'t wrap if the browser window is resized to be narrow.
This worked for me:
.container { display: inline-flex; } .slide { float: left; }
something1 something2 something3 something4
https://css-tricks.com/snippets/css/a-guide-to-flexbox/