Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/viewport-unit-011.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Values and Units Test: vh unit and vw unit (basic)</title>
<!--
Original test is:
-->
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="match" href="reference/viewport-unit-011-ref.html">
<style>
body {
margin: 0;
height: 100vh;
}
div {
width: calc(50vw + 10%);
height: calc(50vh + 10%);
background-color: green;
}
</style>
<div>
</div>