Shorthand font property

フォントサイズとフォントの種類を同時に指定するときは、fontプロパティーでまとめたほうが便利です。斜体や太字も同時に指定できます。


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>フォントのプロパティーをまとめる</title>
<style type="text/css">
<!--
body { background-color: #FFC; color: black; }
h1 { font: bold italic 2em Verdana, sans-serif;
color: maroon; }
p { font: bold 1em/1.5em "MS Pゴシック",
"平成角ゴシック", sans-serif; }
-->
</style>
</head>
<body>

<h1 lang="en">Shorthand font property</h1>

<p>フォントサイズとフォントの種類を同時に指定するときは、fontプロパティーでまとめたほうが便利です。斜体や太字も同時に指定できます。</p>
<P><BR>
<BR>
</P>
</body>
</html>