CSS - Measurement Units



Example -Demo vamx unit

 <!DOCTYPE html>
<html>
<head>
  <style>
    
    h1 {
      font-size: 4vmax;
    }
    
    p {
      font-size: 6vmax;
    }
  </style>
</head>
<body>
  <h1>This is a Heading</h1>
  <p>This is a paragraph with larger font size.</p>
</body>
</html>
Advertisements