blob: 64dc6f725eb4616735ff3a83e93498412d51295f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, minimum-scale=0.5, initial-scale=1">
<style>
html, body {
margin: 0;
width: 100%;
height: 100%;
}
#twice-width {
position: absolute;
width: 200%;
height: 100%;
}
</style>
<div id="twice-width"></div>
|