webveuje/csspress/demo/a.html

32 lines
644 B
HTML
Raw Normal View History

2021-01-05 01:18:22 +00:00
<!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>
*{
margin:0;
padding: 0;
}
div{
width:60px;
height: 600px;
background:red;
}
.box1{
background: gray;
height: 60px;
position: sticky;top: 10px;
}
.box2{
background: gold;
}
</style>
</head>
<body>
<div class="box1"></div>
<div></div>
<div class="box2"></div>
</body>
</html>