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

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

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

<html>
<head>
<style>
    .bold {font-weight:bold;}
    .italic {font-style:italic;}
</style>
</head>
<body>
    <div class="arial">
        Arial The quick brown fox jumped over the lazy dog.<br />
        <span class="bold">Arial The quick brown fox jumped over the lazy dog.</span><br />
        <span class="italic">Arial The quick brown fox jumped over the lazy dog.</span><br />
    </div>
</body>
</html>