diff options
author | Hokkaidosm <64832302+Hokkaidosm@users.noreply.github.com> | 2022-01-29 20:10:07 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-29 21:49:38 +0900 |
commit | 38a51524a79b8d174f1ae9e2d3fbe287188fb86c (patch) | |
tree | acfe533eaf87322e6f5db45fb35547d39a3f30e3 /files/ja/web | |
parent | 1dbea823b8b72de289161a879207736b1b34889a (diff) | |
download | translated-content-38a51524a79b8d174f1ae9e2d3fbe287188fb86c.tar.gz translated-content-38a51524a79b8d174f1ae9e2d3fbe287188fb86c.tar.bz2 translated-content-38a51524a79b8d174f1ae9e2d3fbe287188fb86c.zip |
min-height - CSS: カスケーディングスタイルシート 導入部の修正
heightなのに、「幅」と記載されていた箇所が2箇所あったので修正。
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/css/min-height/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/css/min-height/index.md b/files/ja/web/css/min-height/index.md index 27fbb98ff5..b49d418b4d 100644 --- a/files/ja/web/css/min-height/index.md +++ b/files/ja/web/css/min-height/index.md @@ -17,11 +17,11 @@ translation_of: Web/CSS/min-height --- {{CSSRef}} -**`min-height`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の最小幅を設定します。これは {{cssxref("height")}} プロパティの[使用値](/ja/docs/Web/CSS/used_value)が、`min-height` で指定した値を下回ることを防ぎます。 +**`min-height`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素の最小高を設定します。これは {{cssxref("height")}} プロパティの[使用値](/ja/docs/Web/CSS/used_value)が、`min-height` で指定した値を下回ることを防ぎます。 {{EmbedInteractiveExample("pages/css/min-height.html")}} -`min-height` の値が {{cssxref("max-height")}} および {{cssxref("height")}} の値より大きい場合は、`min-height` の値が要素の幅になります。 +`min-height` の値が {{cssxref("max-height")}} および {{cssxref("height")}} の値より大きい場合は、`min-height` の値が要素の高さになります。 ## 構文 |