如何使用CSS Measurement Unit vmin设置字体大小?

要使用CSS Measurement Unit vmin设置字体大小,请尝试运行以下代码:

<html>
   <head>
   </head>
   <body>
      <div style = "position:relative;left:90px;top:3px;background-color:yellow;font-size: 4vmin;">
         This div has relative positioning.
      </div>
   </body>
</html>