1 回答
TA贡献1777条经验 获得超10个赞
看看是否是你需要的~
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.page{
position: absolute;
left:10px;
top: 10px;
width: 300px;
height: 500px;
overflow: hidden;
}
.header-bar{
position: absolute;
left:0px;
top:0px;
width: 100%;
height: 50px;
background-color: #0a6ebd;
}
.content{
padding-top: 50px;
width: 100%;
height: calc(100% - 50px);
background-color: #ffffff;
overflow-x: hidden;
overflow-y: auto;
}
ul{
width: 100%;
background-color: greenyellow;
height: 1000px;
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<div class="page">
<header class="header-bar"></header>
<div class="content">
<ul>
<li></li>
</ul>
</div>
</div>
</body>
</html>
添加回答
举报