blob: 3e5e3470523f7f3e1b3d3a393ce9d6fd16148cfb [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 100px;
background-color: blue;
}
.fixed {
position: fixed;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="fixed box"></div>
</body>
</html>