首页htmlfont_weightCSS Property Value - 如何font-weight: normal

CSS Property Value - 如何font-weight: normal

我们想知道如何font-weight: normal

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.one {
  font-weight: normal
}

.two {
  font-weight: bold
}
</style>
</head>
<body>
  <p class="two one">Test!!!!!</p>
</body>
</html>