<div class="container"> <ul class="list"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> <li>Item 5</li> </ul> </div>
首先大家需要创建一个包含列表的容器,并添加一个 \
- 标签来创建大家的列表。接下来,大家将为容器添加一些 css 属性来实现左右滑动效果。
.container { overflow-x: scroll; white-space: nowrap; } .list { display: inline-block; list-style: none; margin: 0; padding: 0; width: 1000px; } .list li { display: inline-block; margin-right: 20px; width: 100px; height: 100px; background-color: #ccc; text-align: center; line-height: 100px; font-size: 24px; }
在这些 css 属性中,大家使用了 overflow-x: scroll 来允许用户通过水平滚动来浏览大家的列表,而 white-space: nowrap 属性将使列表项不自动换行。此外,大家为列表项添加了一些样式,以提高其可读性和可视性。
现在,大家打开浏览器并测试一下大家的代码。大家应该能够在水平方向上滚动列表。这就是 CSS 中实现列表左右滑动效果的基本方法。