Files
ClassContent/历届学生/熊坤/2019-03-22/overflow.html
2024-09-27 02:06:13 +08:00

62 lines
1005 B
HTML

<!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>overflow</title>
<style>
::-webkit-scrollbar {
width: 0px;
height: 0px;
background-color: #F5F5F5;
}
body {
margin: 0;
}
ul {
margin: 0;
padding: 0;
width: 1000px;
}
ul li {
list-style: none;
}
.father {
width: 600px;
height: 100px;
background: #8d8d8d;
overflow-x: scroll;
}
.father li {
float: left;
width: 100px;
height: 100px;
background: yellow;
overflow-x: scroll;
}
</style>
</head>
<body>
<div class="father">
<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>
<li>10</li>
</ul>
</div>
</body>
</html>