Dreamweaver TechniqueJAVA Script サンプル | CSS sample | JAVA Applet sample | Flash Sample
HTML4.0 reference | DynamicHTMLXHTML | XML sample | XSLT sample | RIKO's ASP Trial
ASP ADO リファレンス | PHP関数リファレンス | MySQL関数リファレンス

フォントを斜体にしたい

■ フォントを斜体にしたい

font-styleプロパティは、フォント斜体を指定します。

値:normal、italic、oblique

■ 作例

HTMLソース

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>フォントスタイルを指定する</title>
<style type="text/css">
<!--
p {
font-size: x-large;
font-family: "Times New Roman", Times, serif
}
#itlc { font-style: italic }
#oblq { font-style: oblique } 
.keywd {
color: #ff3300;
background-color: #ffffff
}
-->
</style>
</head>
<body>
<p>
font-style: <span class="keywd">normal</span>
</p>
<p id="itlc">
font-style: <span class="keywd">italic</span>
</p>
<p id="oblq">
font-style: <span class="keywd">oblique</span>
</p>
</body>
</html>

<<<戻る

R HOUSE | RIKO's Trial Page | Shirley's Pettit Case | Shirley's i-box | Shirley's little box | CSS Trial