blob: 8c48da5dbe2c6f9dc81892d79615fdfdd1e760d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<style>
body {
height: 4000px;
margin: 0;
overflow: hidden;
}
#fixed {
position: fixed;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
box-sizing: border-box;
border: 1px solid blue;
}
</style>
<div id="fixed"></div>
</html>
|