首页htmlui_olHTML Element Style - 如何使UL/OL水平滚动

HTML Element Style - 如何使UL/OL水平滚动

我们想知道如何使UL/OL水平滚动。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  overflow-x: auto;
  white-space: nowrap;
}

ul li {
  display: inline;
}
</style>
</head>
<body>
  <ul>
    <li>Test1</li>
    <li>Test2</li>
    <li>Test3</li>
    <li>Test4</li>
    <li>Test5</li>
    <li>Test6</li>
  </ul>
</body>
</html>