61,128
社区成员




<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
width: 200px;
height: 200px;
overflow: auto;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
li{
height: 30px;
width: 200px;
border-bottom: 1px solid #ccc;
background-color: aliceblue;
}
</style>
</head>
<body>
<div><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>