blob: ec10e6007913ab9c0691c6b108a3f4d5dfa20a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
html {
background-color: green;
}
#fixed {
width: 100px;
height: 100px;
background-color: red;
position: fixed;
bottom: 0px;
right: 0px;
}
</style>
<div id="fixed"></div>
|