首页htmlfont_sizeCSS Property Value - 如何font-size: 100vh;

CSS Property Value - 如何font-size: 100vh;

我们想知道如何font-size: 100vh;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 100vh;
}

tr:nth-child(2) {
  background: #F0F0F0;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>Line 1</td>
    </tr>
    <tr>
      <td>Line 2</td>
    </tr>
    <tr>
      <td>Line 3</td>
    </tr>
  </table>
</body>
</html>