blob: 7d2bcbcb7884cbeea1103069ea1978c9758d7a7c [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
.sticky {
position: sticky;
top: 0px;
left: 100px;
width: 300px;
height: 300px;
background-color: green;
}
.red {
position: absolute;
top: 0px;
left: 100px;
width: 300px;
height: 300px;
background-color: red;
}
</style>
</head>
<body>
<div class="red"></div>
<div class="sticky"></div>
</body>
</html>