Added CSS3 specific relative length units

See http://dev.w3.org/csswg/css3-values/#relative-length-units
This commit is contained in:
Evan Torrie
2011-08-08 15:12:23 -07:00
committed by Luke Page
parent 372569f726
commit 8284ce5fe0
2 changed files with 9 additions and 1 deletions

View File

@@ -66,3 +66,11 @@ p::before {
5.5% { border: 2px }
100% { border: 3px }
}
.units {
font: 1.2rem/2rem;
font: 8vw/9vw;
font: 10vh/12vh;
font: 12vm/15vm;
font: 1.2ch/1.5ch;
}