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

CSS Property Value - 如何font-size: inherit;

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

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
p {
  font-size: 16px;
}

div {
  border: 1px solid red;
  font-size: 11px;
}

div p {
  font-size: inherit;
}
</style>
</head>
<body>
  <p>test</p>
  <div class="font-size">
    <p>test</p>
    <ul>
      <li>test</li>
      <li>test</li>
    </ul>
    <p>test</p>
    <p>test</p>
  </div>
  <p>test</p>
  <p>test</p>
</body>
</html>