代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.wrapper {
width: 200px;
border: 1px solid red;
display: flex;
overflow: auto;
box-sizing: border-box;
padding: 20px;
}
.wrapper div {
width: 80px;
border: 1px solid red;
flex-grow: 0;
margin-right: 20px;
}
</style>
</head>
<body>
<div class="wrapper">
<div>123</div>
<div>123</div>
<div>123</div>
<div>123</div>
<div>123</div>
<div>123</div>
<div>123</div>
<div>123</div>
</div>
</body>
</html>
最后一个元素效果: