<div class="wrapper"> <ol> <li>1</li> <li>1</li> <li>1</li> </ol></div>
.wrapper { overflow: auto; width: 30px;}ol { width: 30px;}li { display:inline-block; }
The example is clear. I want to have an horizontal scroll in the ol but the 3 is going down.
Remove overflow: auto from the ordered list and add it to the wrapper. Make sure the wrapper has a fixed width:
The wrapper should now act as a window within which the ol will scroll.