62 lines
1005 B
HTML
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> |