Created
June 19, 2012 19:26
-
-
Save futuraprime/2956030 to your computer and use it in GitHub Desktop.
Quick viewport units test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>A Website!</title> | |
<style type="text/css"> | |
.foo { | |
width: 50%; | |
} | |
.bar { | |
width: 50vw; | |
} | |
.baz { | |
width: 20vw; | |
} | |
.foo { background-color: blue; } | |
.bar-1 { background-color: red; } | |
.bar-2 { background-color: green; } | |
.baz { background-color: yellow; } | |
</style> | |
</head> | |
<body> | |
<div class="foo"> | |
<div class="bar bar-1">Bar!!!</div> | |
<div class="bar bar-2"> | |
<div class="baz">Bazzzz</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment