font-style は、斜体文字(またはイタリック)を指定するプロパティです。
p {
font-style: italic;
}
| font-style | italic … (イタリック体にします) |
|---|---|
| oblique … (斜体にします) | |
| normal … (標準)デフォルト |
※oblique の指定はNetscape 4.xでは対応していません。
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
#example1 { font-style: italic; }
#example2 { font-style: oblique; }
-->
</style>
</head>
<body>
<p>標準の文字</p>
<p id="example1">italic を指定した文字</p>
<p id="example2">oblique を指定した文字</p>
</body>
</html>
▼これをブラウザで見ると次のように表示されます
標準の文字
italic を指定した文字
oblique を指定した文字