font-style 属性主要用于指定斜体文本,设定值:
- normal - 文字正常显示
- italic - 文本以斜体显示
- oblique - 文本为“倾斜”(倾斜与斜体非常相似,但支持较少)
实例代码
<!doctype html>
<html>
<head>
<style>
p.p1{
font-style:normal;
}
p.p2{
font-style:italic;
}
p.p3{
font-style:oblique;
}
</style>
</head>
<body>
<h1>font-style属性实例</h1>
<p class="p1">这一段文本正常显示 normal</p>
<p class="p2">这一段文本斜体显示 italic</p>
<p class="p3">这一段文本倾斜显示 oblique</p>
</body>
</html>
~
运行效果:
评论