Skip to content

Commit

Permalink
2024/08/12 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Nov 29, 2024
1 parent d1fd93f commit 529b35d
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions files/ja/web/css/text-decoration-style/index.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
---
title: text-decoration-style
slug: Web/CSS/text-decoration-style
l10n:
sourceCommit: 75326725db2daa924618e58ae31a43345c7a16dc
---

{{CSSRef}}

[CSS](/ja/docs/Web/CSS) **`text-decoration-style`** プロパティは、 {{ cssxref("text-decoration-line") }} で指定された線の種類を設定します。線の種類はすべての線に適用され `text-decoration-line` で定義された線ごとに異なる種類を定義する方法はありません。
**`text-decoration-style`**[CSS](/ja/docs/Web/CSS) のプロパティで、 {{ cssxref("text-decoration-line") }} で指定された線の種類を設定します。線の種類はすべての線に適用され `text-decoration-line` で定義された線ごとに異なる種類を定義する方法はありません。

{{EmbedInteractiveExample("pages/css/text-decoration-style.html")}}

Expand All @@ -27,6 +29,7 @@ text-decoration-style: wavy;
text-decoration-style: inherit;
text-decoration-style: initial;
text-decoration-style: revert;
text-decoration-style: revert-layer;
text-decoration-style: unset;
```

Expand All @@ -42,8 +45,8 @@ text-decoration-style: unset;
- : 破線を描画します。
- wavy
- : 波線を描画します。
- \-moz-none{{ non-standard_inline }}
- : 線を描画しません。代わりに {{ cssxref("text-decoration-line") }}`: none` を使用してください。
- \-moz-none
- : 線を描画しません。代わりに {{cssxref("text-decoration-line", "text-decoration-line: none")}} を使用してください。

## 公式定義

Expand All @@ -55,18 +58,9 @@ text-decoration-style: unset;

## 例

<h3 id="Setting_a_wavy_underline">波線の下線を設定</h3>
### 波線の下線を設定

```css
.example {
-moz-text-decoration-line: underline;
-moz-text-decoration-style: wavy;
-moz-text-decoration-color: red;
-webkit-text-decoration-line: underline;
-webkit-text-decoration-style: wavy;
-webkit-text-decoration-color: red;
}
```
次の例は、赤い波線の下線を生成します。

#### CSS

Expand All @@ -80,13 +74,13 @@ text-decoration-style: unset;

#### HTML

```html
```html-nolint
<p class="wavy">このテキストには付近に赤い波線があります。</p>
```

#### 結果

{{ EmbedLiveSample('Setting_a_wavy_underline', '', '', '') }}
{{EmbedLiveSample('Setting_a_wavy_underline')}}

## 仕様書

Expand All @@ -99,3 +93,7 @@ text-decoration-style: unset;
## 関連情報

- 複数の行内装飾プロパティを一度に設定するときは、代わりに一括指定の {{cssxref("text-decoration")}} プロパティを使った方が便利かもしれません。
- {{cssxref("text-decoration-line")}}
- {{cssxref("text-decoration-color")}}
- {{cssxref("text-decoration-thickness")}}
- {{cssxref("text-underline-offset")}}

0 comments on commit 529b35d

Please sign in to comment.