mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
29 lines
425 B
HTML
29 lines
425 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
@viewport {
|
|
height: auto;
|
|
width: 240px;
|
|
}
|
|
|
|
#container {
|
|
background: blue;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#box {
|
|
background: green;
|
|
height: 50vh;
|
|
width: 50vw;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="box">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|