horizontal scrollbar for ul

前端 未结 5 697
忘了有多久
忘了有多久 2020-12-30 01:52

For some reason, I can\'t prevent the UL and it\'s LI\'s from wrapping. I want the UL\'s width to be exactly the width of the LI\'s on one line (without wrapping) and if the

5条回答
  •  星月不相逢
    2020-12-30 02:12

    Add the following rule:

    div#nav ul {
       overflow-x: hidden;
       overflow-y: scroll;
       white-space: nowrap;
    }
    

提交回复
热议问题