说明
1、移动端经常有横向滚动的需求,特别有时候内容还不固定,宽度也就没发写死
2、如何通过css实现内容不固定的情况下,宽度能依据内容的总宽度自适应就是我的目标
3、实现重点display: inline-flex; 效果见下图
效果图
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>星空</title>
<style>
.scroll{
overflow-x: auto;
overflow-y: hidden;
}
ul{
width: auto;
height: 200px;
overflow: hidden;
display: inline-flex;
}
li{
width: 200px;
height: 200px;
text-align: center;
line-height: 200px;
float: left;
background-color: #3399FF;
list-style: none;
}
li:nth-child(2n){
background-color: #666;
}
</style>
</head>
<body>
<div class="scroll">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
</ul>
</div>
</body>
</html>
网友评论