Skip to content

Commit

Permalink
2023/06/28 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Nov 23, 2024
1 parent 98fc4fb commit d493d8d
Show file tree
Hide file tree
Showing 3 changed files with 276 additions and 0 deletions.
95 changes: 95 additions & 0 deletions files/ja/web/css/font-synthesis-small-caps/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
---
title: font-synthesis-small-caps
slug: Web/CSS/font-synthesis-small-caps
l10n:
sourceCommit: 28368ab728eed206d9069f5ba5b889e990ff810c
---

{{CSSRef}}

**`font-synthesis-small-caps`**[CSS](/ja/docs/Web/CSS) プロパティで、フォントファミリーにスモールキャップの書体がない場合に、ブラウザーがスモールキャップの書体を合成するかどうかを指定します。スモールキャップの字体は通常、大文字の形状を使用しますが、小文字のサイズに縮小されます。

すべての書体合成値を制御するために、多くの場合は一括指定プロパティ {{cssxref("font-synthesis")}} を使用した方が便利です。

## 構文

```css
/* キーワード値 */
font-synthesis-small-caps: auto;
font-synthesis-small-caps: none;

/* グローバル値 */
font-synthesis-small-caps: inherit;
font-synthesis-small-caps: initial;
font-synthesis-small-caps: revert;
font-synthesis-small-caps: revert-layer;
font-synthesis-small-caps: unset;
```

### 値

- `auto`
- : 不足しているスモールキャップの書体は、必要に応じてブラウザーが合成する可能性があることを示します。
- `none`
- : 不足しているスモールキャップの書体のブラウザーによる合成が許可されていないことを示します。

## 公式定義

{{cssinfo}}

## 形式文法

{{csssyntax}}

## 例

### スモールキャップの書体の合成の無効化

この例は、 Montserrat フォントでブラウザーによるスモールキャップの書体の合成をオフにすることを示しています。

#### HTML

```html-nolint
<p class="english">
これは既定の <span class="small-caps">small-caps</span>,
<strong>bold</strong>, <em>oblique</em> の書体です。
</p>

<p class="english no-syn">
<span class="small-caps">small-caps</span> の書体はオフになりましたが、 <strong>bold</strong> と <em>oblique</em> の書体はそうではありません。
</p>
```

#### CSS

```css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.english {
font-family: "Montserrat", sans-serif;
}
.small-caps {
font-variant: small-caps;
}
.no-syn {
font-synthesis-small-caps: none;
}
```

#### 結果

{{EmbedLiveSample('Disabling synthesis of small-caps typeface', '', '100')}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [font-synthesis](/ja/docs/Web/CSS/font-synthesis) shorthand, [font-synthesis-style](/ja/docs/Web/CSS/font-synthesis-style), [font-synthesis-weight](/ja/docs/Web/CSS/font-synthesis-weight)
- {{cssxref("font-style")}}, {{cssxref("font-variant")}}, {{cssxref("font-variant-caps")}}, {{cssxref("font-weight")}}
- [CanvasRenderingContext2D: fontVariantCaps property](/ja/docs/Web/API/CanvasRenderingContext2D/fontVariantCaps)
91 changes: 91 additions & 0 deletions files/ja/web/css/font-synthesis-style/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
---
title: font-synthesis-style
slug: Web/CSS/font-synthesis-style
l10n:
sourceCommit: 28368ab728eed206d9069f5ba5b889e990ff810c
---

{{CSSRef}}

**`font-synthesis-style`**[CSS](/ja/docs/Web/CSS) のプロパティで、フォントファミリーに斜体書体がない場合に、ブラウザーが斜体書体を合成するかどうかを指定します。

すべての書体合成値を制御するために、多くの場合は一括指定プロパティ {{cssxref("font-synthesis")}} を使用した方が便利です。

## 構文

```css
/* キーワード値 */
font-synthesis-style: auto;
font-synthesis-style: none;

/* グローバル値 */
font-synthesis-style: inherit;
font-synthesis-style: initial;
font-synthesis-style: revert;
font-synthesis-style: revert-layer;
font-synthesis-style: unset;
```

### 値

- `auto`
- : 不足している斜体書体は、必要に応じてブラウザーが合成する可能性があることを示します。
- `none`
- : 不足している斜体書体のブラウザーによる合成が許可されていないことを示します。

## 公式定義

{{cssinfo}}

## 形式文法

{{csssyntax}}

## 例

### 斜体書体の合成の無効化

この例は、 Montserrat フォントでブラウザーによる斜体書体の合成をオフにすることを示しています。

#### HTML

```html-nolint
<p class="english">
これは既定の <em>oblique typeface</em>
<strong>bold typeface</strong> です。
</p>

<p class="english no-syn">
<em>oblique typeface</em> はオフになりましたが、 <strong>bold typeface</strong> はそうでありません。
</p>
```

#### CSS

```css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.english {
font-family: "Montserrat", sans-serif;
}
.no-syn {
font-synthesis-style: none;
}
```

#### 結果

{{EmbedLiveSample('Disabling synthesis of bold typeface', '', '100')}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [font-synthesis](/ja/docs/Web/CSS/font-synthesis) shorthand, [font-synthesis-small-caps](/ja/docs/Web/CSS/font-synthesis-small-caps), [font-synthesis-weight](/ja/docs/Web/CSS/font-synthesis-weight)
- {{cssxref("font-style")}}, {{cssxref("font-variant")}}, {{cssxref("font-weight")}}
90 changes: 90 additions & 0 deletions files/ja/web/css/font-synthesis-weight/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
---
title: font-synthesis-weight
slug: Web/CSS/font-synthesis-weight
l10n:
sourceCommit: 28368ab728eed206d9069f5ba5b889e990ff810c
---

{{CSSRef}}

**`font-synthesis-weight`**[CSS](/ja/docs/Web/CSS) のプロパティで、フォントファミリーに太字書体がない場合に、ブラウザーが合成するかどうかを指定します。

すべての書体合成値を制御するために、多くの場合は一括指定プロパティ {{cssxref("font-synthesis")}} を使用した方が便利です。

## 構文

```css
/* キーワード値 */
font-synthesis-weight: auto;
font-synthesis-weight: none;

/* グローバル値 */
font-synthesis-weight: inherit;
font-synthesis-weight: initial;
font-synthesis-weight: revert;
font-synthesis-weight: revert-layer;
font-synthesis-weight: unset;
```

### 値

- `auto`
- : 不足している太字書体は、必要に応じてブラウザーが合成する可能性があることを示します。
- `none`
- : 不足している太字書体のブラウザーによる合成が許可されていないことを示します。

## 公式定義

{{cssinfo}}

## 形式文法

{{csssyntax}}

## 例

### 太字書体の合成の無効化

この例は、 Montserrat フォントでブラウザーによる太字書体の合成をオフにすることを示しています。

#### HTML

```html-nolint
<p class="english">
これは既定の <strong>bold typeface</strong> と <em>oblique typeface</em> です。
</p>

<p class="english no-syn">
<strong>bold typeface</strong> はオフになりましたが、 <em>oblique typeface</em> はそうではありません。
</p>
```

#### CSS

```css
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.english {
font-family: "Montserrat", sans-serif;
}
.no-syn {
font-synthesis-weight: none;
}
```

#### 結果

{{EmbedLiveSample('Disabling synthesis of bold typeface', '', '100')}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [font-synthesis](/ja/docs/Web/CSS/font-synthesis) 一括指定, [font-synthesis-small-caps](/ja/docs/Web/CSS/font-synthesis-small-caps), [font-synthesis-style](/ja/docs/Web/CSS/font-synthesis-style)
- {{cssxref("font-style")}}, {{cssxref("font-variant")}}, {{cssxref("font-weight")}}

0 comments on commit d493d8d

Please sign in to comment.