32 lines
644 B
HTML
32 lines
644 B
HTML
|
<!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>
|