How can I prevent floated div elements from wrapping when the browser is re-sized?

前端 未结 5 1533
眼角桃花
眼角桃花 2020-12-24 11:16

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:          


        
5条回答
  •  清酒与你
    2020-12-24 12:00

    Make the container div around them

    .container {
    width: 500px;
    white-space: nowrap;
    overflow: visible/hidden/scroll - whichever suits you;
    }
    

提交回复
热议问题