blob: ea84b80fabde6832f141c6cbf2279013c2683ef6 (
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=2">
<style>
html, body {
margin: 0;
width: 100%;
height: 100%;
}
div {
background: green;
position: absolute;
width: 100%;
height: 50%;
}
</style>
<div></div>
|