[新着] Webテンプレートを仮オープンしました
font-variant は、スモールキャップ(スモールキャピタル)を指定するプロパティです。
このプロパティの値に small-caps を指定すると、アルファベットの小文字が小さめの大文字で表示されます。
p {
font-variant: small-caps;
}
| font-variant | small-caps … (スモールキャップを指定します) |
|---|---|
| normal … (標準)デフォルト |
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
#example { font-variant: small-caps; }
-->
</style>
</head>
<body>
<p>TAG index html TAG</p>
<p id="example">TAG index html TAG</p>
</body>
</html>
▼これをブラウザで見ると次のように表示されます
TAG index html TAG
TAG index html TAG