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.
you can use
display: table;
for your container and therfore avoid the overflow: hidden;. It should do the job if you used it just for warpping purpose.
overflow: hidden;