You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
493 B
32 lines
493 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>测试</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
height: calc(100% - 30px);
|
|
width: calc(100% - 30px);
|
|
margin: 15px;
|
|
border: 1px solid red;
|
|
overflow: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
1<br>1<br>1<br>1<br>1<br>1<br>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |