mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
37 lines
822 B
HTML
37 lines
822 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
CSS Values and Units Test:
|
|
Viewports units are supported in @viewport rules
|
|
</title>
|
|
<meta content="
|
|
Viewports units are supported in @viewport rules
|
|
" name="assert">
|
|
|
|
<link href="mailto:fremycompany.developer@yahoo.fr" rel="author" title="François REMY">
|
|
|
|
<link href="http://www.w3.org/TR/css3-values/#viewport-relative-lengths" rel="help">
|
|
<link href="https://drafts.csswg.org/css-device-adapt-1/" rel="help">
|
|
|
|
<link href="reference/all-green.htm" rel="match">
|
|
|
|
<style type="text/css">
|
|
|
|
html, body { margin: 0px; padding: 0px; overflow: hidden; }
|
|
|
|
@viewport { width: 1vw; }
|
|
|
|
html { background: red; }
|
|
#target { background: green; width: 100vw; height: 100vh; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="target"></div>
|
|
|
|
|
|
|
|
</body></html> |