blob: d4941007bdf792527ce98f6af8e36e621391b47d (
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,minimum-scale=1,initial-scale=1">
<style>
html {
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
#target {
background-color: green;
width: 50vw;
height: 100vh;
position: absolute;
}
</style>
<div id="target"></div>
</html>
|