2
I don’t know where I’m going wrong, but at 5° numerical sequence bar, you don’t want to line up linear, even if you give it a float:left; and a "nowrap" because I want to add a lower scroll bar to the content, but only the sidebar is added, if I increase the width of the main div therefore there will be no line break, but the bottom scroll bar is not displayed, as I do to display a lower slider as defined in the div. menu,??
body{background-color:#6C9;}
.menu{ overflow:auto;
white-space: nowrap;
width:500px;
height:300px;
}
.menu > div{ float:left;
height:340px;
margin-left:5px;
width:100px;
background-color:#FFF;
}
<div class="menu">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
It doesn’t fit either, the 5° bar is giving line break by decreasing the width on the '.menu' wanted to leave all the bars aligned horizontally and display a lower scrool, because the more I decrease the width of the '.menu' the more there will be line break, but I don’t want that to happen
– Elienay Junior