--- title: font slug: Web/CSS/font tags: - CSS - CSS フォント - CSS プロパティ - リファレンス - recipe:css-shorthand-property browser-compat: css.properties.font translation_of: Web/CSS/font --- {{CSSRef}} **`font`** は CSS の[一括指定プロパティ](/ja/docs/Web/CSS/Shorthand_properties)で、要素のフォントの様々なプロパティをすべて設定します。また、要素のフォントにシステムフォントを設定することもできます。 {{EmbedInteractiveExample("pages/css/font.html")}} 他の一括指定プロパティ同様、個別の値が指定されなかった場合は、それぞれの初期値が設定されます (おそらく一括指定ではないプロパティを使用して設定された以前の値を上書きします)。 `font` によって直接設定できない個別指定の {{cssxref("font-size-adjust")}}, {{cssxref("font-kerning")}} も初期値に設定されます。 ## 構成要素のプロパティ このプロパティは以下の CSS プロパティの一括指定です。 - {{cssxref("font-family")}} - {{cssxref("font-size")}} - {{cssxref("font-stretch")}} - {{cssxref("font-style")}} - {{cssxref("font-variant")}} - {{cssxref("font-weight")}} - {{cssxref("line-height")}} ## 構文 `font` プロパティはシステムフォントを選択するための単一のキーワード、又は様々なフォント関連プロパティの一括指定のどちらかで指定することができます。 `font` をシステムキーワードとして指定する場合は、 `caption`, `icon`, `menu`, `message-box`, `small-caption`, `status-bar` のうちの一つでなければなりません。 `font` を様々なフォント関連プロパティの一括指定とする場合は、次のようになります。 - 次の値を含めなければなりません。 - {{cssxref("<font-size>")}} - {{cssxref("<font-family>")}} - 次の値は任意で含めることができます。 - {{cssxref("<font-style>")}} - {{cssxref("<font-variant>")}} - {{cssxref("<font-weight>")}} - {{cssxref("<font-stretch>")}} - {{cssxref("<line-height>")}} - `font-style`, `font-variant`, `font-weight` は `font-size` よりも前になければなりません。 - `font-variant` は CSS 2.1 で定義された値、つまり `normal` および `small-caps` のみ指定できます。 - `font-stretch` は単一のキーワード値のみを指定することができます。 - `line-height` は `font-size` の直後に、 "/" で区切って、 "`16px/3`" のように指定します。 - `font-family` は指定される最後の値である必要があります。 ### 値 - `<'font-style'>` - : {{cssxref("font-style")}} プロパティを参照。 - `<'font-variant'>` - : {{cssxref("font-variant")}} プロパティを参照。 - `<'font-weight'>` - : {{cssxref("font-weight")}} プロパティを参照。 - `<'font-stretch'>` - : {{cssxref("font-stretch")}} プロパティを参照。 - `<'font-size'>` - : {{cssxref("font-size")}} プロパティを参照。 - `<'line-height'>` - : {{cssxref("line-height")}} プロパティを参照。 - `<'font-family'>` - : {{cssxref("font-family")}} プロパティを参照。 #### システムフォント値 - `caption` - : キャプション付きコントロールに使われるシステムフォント (ボタン、ドロップダウンなど)。 - `icon` - : ラベルアイコンに使用されるシステムフォント。 - `menu` - : メニューに使われるシステムフォント (ドロップダウンメニュー、メニューリストなど)。 - `message-box` - : ダイアログボックスに使われるシステムフォント。 - `small-caption` - : 小さいコントロールのラベルに使われるシステムフォント。 - `status-bar` - : ウィンドウのステータスバーに使われるシステムフォント。 - 接頭辞付きのシステムフォントキーワード - : ブラウザーは他にも、接頭辞付きのキーワードをいくつか実装していることがあります。 Gecko は、 `-moz-window`, `-moz-document`, `-moz-desktop`, `-moz-info`, `-moz-dialog`, `-moz-button`, `-moz-pull-down-menu`, `-moz-list`, `-moz-field` を実装しています。 ## 公式定義 {{CSSInfo}} ## 形式定義 {{CSSSyntax}} ## 例

フォントのプロパティの設定

```css /* フォントの大きさを 12px に設定し、行の高さを 14px にする。 フォントファミリは sans-serif に設定する */ p { font: 12px/14px sans-serif } /* フォントの大きさを親要素の 80% または既定値 (親要素がない場合) に設定する。 フォントファミリは sans-serif に設定する */ p { font: 80% sans-serif } /* フォントの太さを太字に、 フォントスタイルを斜体に、 フォントの大きさを large に、 フォントファミリーは serif に設定する */ p { font: bold italic large serif } /* ウィンドウのステータスバーと同じフォントに設定する */ p { font: status-bar } ```

ライブ例

```html hidden

下のラジオボタンを変更すると、生成された一括指定とその効果が確認できます。

font-style



font-variant


font-weight


font-size


line-height



font-family








font :

font-style
optional

font-variant
optional

font-weight
optional

font-size
mandatory

line-height
optional

font-family
mandatory
This is some sample text.






``` ```css hidden body, input { font: 14px arial; overflow: hidden; } .propInputCont { float: left; text-align: center; margin-right: 5px; width: 80px; } .setPropCont { float: left; margin-right: 5px; width: 120px; } .propInputs, .setPropCont { margin-bottom: 1em; } .curCss { border: none; border-bottom: 1px solid black; text-align: center; width: 80px; } .mandatory { border-bottom-color: red; } .cf:before, .cf:after { content: " "; display: table; } .cf:after { clear: both; } .tar { width: 40px; text-align: right; } .fontfamily { display: inline-block; } ``` ```js hidden var textAreas = document.getElementsByClassName("curCss"), shortText = "", getCheckedValue, setCss, getProperties, injectCss; getProperties = function () { shortText = getCheckedValue("font_style") + " " + getCheckedValue("font_variant") + " " + getCheckedValue("font_weight") + " " + getCheckedValue("font_size") + getCheckedValue("line_height") + " " + getCheckedValue("font_family"); return shortText; } getCheckedValue = function(radio_name) { oRadio = document.forms[0].elements[radio_name]; for (var i = 0; i < oRadio.length; i++) { if(oRadio[i].checked) { var propInput = "input_" + radio_name, curElemName = "input_" + radio_name, curElem = document.getElementById(curElemName); curElem.value = oRadio[i].value; return oRadio[i].value; } } } setCss = function () { getProperties(); injectCss(shortText); } injectCss = function(cssFragment) { old = document.body.getElementsByTagName("style"); if (old.length > 1) { old[1].parentElement.removeChild(old[1]); } css = document.createElement("style"); css.innerHTML = ".fontShortHand{font: " + cssFragment + "}"; document.body.appendChild(css); } setCss(); ``` {{ EmbedLiveSample('Live_sample','100%', '440px')}} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - {{cssxref("font-style")}} - {{cssxref("font-weight")}} - [基本的なテキストとフォントの装飾](/ja/docs/Learn/CSS/Styling_text/Fundamentals)