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プロパティで、フォント関連のプロパティの値をまとめて指定します。
サイズと行間の間は「/」で区切りますが、それ以外の値は半角スペースで区切ってください。また、値は基本的に下に示した順序で指定しますが、サイズとフォント名以外は省略することができます。

斜体 font-styleで指定できる値
太さ font-weightで指定できる値
サイズ font-sizeで指定できる値(省略不可)
行間 line-heightで指定できる値(値の前に「/」が必要)
フォント名 font-familyで指定できる値(省略不可)

■ 作例

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">
<!--
body {
margin: 0;
color: #333399;
background: #ffffff url(../assets/images/M3508.gif)
}
h1, h2 {
text-align: center;
margin: 0
}
h1 {
font: italic bold 6em "Times New Roman",Times,serif
}
h2 {
font: 1.5em Arial,sans-serif;
color: #ff9900;
background: transparent
}
div {
font: 12pt/200% "MS P明朝",平成明朝,serif;
margin: 1em 2em;
padding: 1em;
color: #ffffff;
background: #000000
}
-->
</style>
</head>
<body onLoad="MM_preloadImages('../assets/images/btn_tec02.gif')">
<p align="center"><img src="../assets/images/csslogo.gif" width="364" height="39"></p>
<h1>-font-</h1>
<h2>[ shorthand font property ]</h2>
<div> このプロパティを利用すると、フォントに関連する複数のプロパティを一度に設定することができます。 </div>
<p align="center"><a href="javascript:;" onClick="MM_goToURL('parent','font035.htm');return document.MM_returnValue" onMouseOver="MM_swapImage('view_tec','','../assets/images/btn_tec02.gif',1)" onMouseOut="MM_swapImgRestore()"><img src="../assets/images/btn_tec01.gif" name="view_tec" width="117" height="44" border="0" class="navigation" id="view_tec"></a></p>
</body>
</html>

<<<戻る

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