Relative Length Units

eg.

font-size {height: 100%;}

There are some other length units that have not been widely implemented by browsers: cap, ic, lh, rlh, vb and vi.

The unit 'vmin' is a handy way of dealing with different screen orientations (portrait or landscape).
RESETRUNFULL
<!DOCTYPE html><html><body style="width:100%; height:100%;">
   <div style="font-size:30vmin; width:5ch; background:orange;">
      00000
   </div>
</body></html>