viewport-units-writing-mode-font-size-ref.html (453B)
1 <!doctype html> 2 <title>CSS test reference</title> 3 <meta charset="utf-8"> 4 <style> 5 .test { 6 width: 1em; 7 height: 1em; 8 background-color: green; 9 display: inline-block; 10 } 11 #t1 { 12 font-size: 1vh; 13 } 14 #t2 { 15 font-size: 1vw; 16 } 17 #t3 { 18 font-size: 1vh; 19 } 20 #t4 { 21 font-size: 1vw; 22 } 23 </style> 24 <div class="test" id="t1"></div> 25 <div class="test" id="t2"></div> 26 <div class="test" id="t3"></div> 27 <div class="test" id="t4"></div>