首页htmlfont_styleCSS Property Value - 如何font-style: normal;

CSS Property Value - 如何font-style: normal;

我们想知道如何font-style: normal;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS font-style property</title>
<style type="text/css">
p.normal {
  font-style: normal;
}

p.italic {
  font-style: italic;
}

p.oblique {
  font-style: oblique;
}
</style>
</head>
<body>
  <p class="normal">This is a normal paragraph.</p>
  <p class="italic">This is a paragraph with italic font style.</p>
  <p class="oblique">This is a paragraph with oblique font style.</p>
</body>
</html>