blob: 3c8eec7f690473abb35cf3b66ef4008b0201a2d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1">
<style>
html {
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
#target {
background-color: green;
width: 100vw;
height: 100vh;
position: absolute;
}
</style>
<div id="target"></div>
</html>
|