From ec35860e99aebe90a636a33b40209894ccf6fb36 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 16 Feb 2022 09:58:00 +0900 Subject: Web/CSS/@font-face 以下の記述子の記事を移行 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/@font-face/font-family/index.html | 85 ---------------------- files/ja/web/css/@font-face/font-family/index.md | 85 ++++++++++++++++++++++ 2 files changed, 85 insertions(+), 85 deletions(-) delete mode 100644 files/ja/web/css/@font-face/font-family/index.html create mode 100644 files/ja/web/css/@font-face/font-family/index.md (limited to 'files/ja/web/css/@font-face/font-family') diff --git a/files/ja/web/css/@font-face/font-family/index.html b/files/ja/web/css/@font-face/font-family/index.html deleted file mode 100644 index ae8814bb60..0000000000 --- a/files/ja/web/css/@font-face/font-family/index.html +++ /dev/null @@ -1,85 +0,0 @@ ---- -title: font-family -slug: Web/CSS/@font-face/font-family -tags: - - '@font-face' - - アットルール記述子 - - CSS - - CSS Descriptor - - CSS Fonts - - リファレンス -translation_of: Web/CSS/@font-face/font-family ---- -{{CSSRef}} - -`font-family` は CSS の記述子で、 {{cssxref("@font-face")}} 規則で指定されたフォントのフォントファミリーを指定することができます。 - -## 構文 - -
/* <string> 値 */
-font-family: "font family";
-font-family: 'another font family';
-
-/* <custom-ident> 値 */
-font-family: examplefont;
-
- -

- -- `<family-name>` - - : フォントファミリーの名前を指定します。 - -

公式定義

- -{{cssinfo}} - -

形式文法

- -{{csssyntax}} - -## 例 - -

フォントファミリー名の設定

- -
@font-face {
-  font-family: examplefont;
-  src: url('examplefont.ttf');
-}
-
- -## 仕様書 - - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('CSS3 Fonts', '#font-family-desc', 'font-family')}}{{Spec2('CSS3 Fonts')}}初回定義
- -

ブラウザーの互換性

- -{{Compat("css.at-rules.font-face.font-family")}} - -## 関連情報 - - diff --git a/files/ja/web/css/@font-face/font-family/index.md b/files/ja/web/css/@font-face/font-family/index.md new file mode 100644 index 0000000000..ae8814bb60 --- /dev/null +++ b/files/ja/web/css/@font-face/font-family/index.md @@ -0,0 +1,85 @@ +--- +title: font-family +slug: Web/CSS/@font-face/font-family +tags: + - '@font-face' + - アットルール記述子 + - CSS + - CSS Descriptor + - CSS Fonts + - リファレンス +translation_of: Web/CSS/@font-face/font-family +--- +{{CSSRef}} + +`font-family` は CSS の記述子で、 {{cssxref("@font-face")}} 規則で指定されたフォントのフォントファミリーを指定することができます。 + +## 構文 + +
/* <string> 値 */
+font-family: "font family";
+font-family: 'another font family';
+
+/* <custom-ident> 値 */
+font-family: examplefont;
+
+ +

+ +- `<family-name>` + - : フォントファミリーの名前を指定します。 + +

公式定義

+ +{{cssinfo}} + +

形式文法

+ +{{csssyntax}} + +## 例 + +

フォントファミリー名の設定

+ +
@font-face {
+  font-family: examplefont;
+  src: url('examplefont.ttf');
+}
+
+ +## 仕様書 + + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS3 Fonts', '#font-family-desc', 'font-family')}}{{Spec2('CSS3 Fonts')}}初回定義
+ +

ブラウザーの互換性

+ +{{Compat("css.at-rules.font-face.font-family")}} + +## 関連情報 + + -- cgit v1.2.3-54-g00ecf