<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>01.滚动</title>
<style>
*{
margin: 0;
padding: 0;
}
.box{
margin: 100px auto;
width: 200px;
height: 100px;
border: 1px solid #000;
/*overflow: hidden;*/
}
.box>ul{
list-style: none;
display: flex;
}
li{
width: 200px;
height: 100px;
flex-shrink: 0;
}
.box>ul>li:nth-child(odd){
background: yellow;
}
.box>ul>li:nth-child(even){
background: purple;
}
</style>
</head>
<body>
<div class="box">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
</div>
</body>
</html>
网友评论