解决方法
首先,您需要告诉ul不要换行并溢出到滚动条中.然后li元素不需要浮动并显示内联.这样做:
ul.nav { white-space: nowrap; overflow-x: auto; } ul.nav li { display: inline-block; float: none; }