diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-06-07 01:47:51 +0900 |
---|---|---|
committer | potappo <potappo@gmail.com> | 2021-06-15 23:29:24 +0900 |
commit | bd08bf1e4887e1f3900e2b18f434cb0b05977972 (patch) | |
tree | dadb74d025b55af7f0a2a464d674d62edbdb8bd4 /files/ja | |
parent | 522984283b56b68582d606c76e4ca98c0baf9451 (diff) | |
download | translated-content-bd08bf1e4887e1f3900e2b18f434cb0b05977972.tar.gz translated-content-bd08bf1e4887e1f3900e2b18f434cb0b05977972.tar.bz2 translated-content-bd08bf1e4887e1f3900e2b18f434cb0b05977972.zip |
20210607-Web/CSS/-webkit-line-clamp
- 2021/05/08 時点の英語版に同期
Diffstat (limited to 'files/ja')
-rw-r--r-- | files/ja/web/css/-webkit-line-clamp/index.html | 65 |
1 files changed, 37 insertions, 28 deletions
diff --git a/files/ja/web/css/-webkit-line-clamp/index.html b/files/ja/web/css/-webkit-line-clamp/index.html index 8e52755eff..fee9ec1687 100644 --- a/files/ja/web/css/-webkit-line-clamp/index.html +++ b/files/ja/web/css/-webkit-line-clamp/index.html @@ -5,32 +5,35 @@ tags: - '-webkit-line-clamp' - CSS - CSS Property + - Non-standard + - recipe:css-property +browser-compat: css.properties.-webkit-line-clamp translation_of: Web/CSS/-webkit-line-clamp --- <div>{{CSSRef}}</div> -<p><strong><code>-webkit-line-clamp</code></strong> CSS プロパティは {{Glossary("block container")}} のコンテンツを指定した行数に制限することができます。</p> +<p><strong><code>-webkit-line-clamp</code></strong> は CSS のプロパティで、{{Glossary("block container", "ブロックコンテナー")}}のコンテンツを指定した行数に制限することができます。</p> -<p>{{cssxref("display")}} プロパティに <code>-webkit-box</code> もしくは <code>-webkit-inline-box</code> が設定されており、かつ {{cssxref("-webkit-box-orient")}} プロパティに <code>vertical</code> が設定されている組み合わせのときのみ使用できます。</p> +<p>{{cssxref("display")}} プロパティに <code>-webkit-box</code> もしくは <code>-webkit-inline-box</code> が設定されており、かつ {{cssxref("box-orient")}} プロパティに <code>vertical</code> が設定されている組み合わせのときのみ使用できます。</p> <p>ほとんどの場合、 {{cssxref("overflow")}} に <code>hidden</code> を設定できます。そうしなければコンテンツはクリップされませんが、省略記号は指定した行数の後に表示されます。</p> <p>アンカー要素に適用したとき、切り捨てがテキストの途中で行われる場合があるかもしれませんが、必ずしも末尾で切り捨てが行われるとは限りません。</p> -<div class="blockIndicator note"> -<p><strong>メモ</strong>: このプロパティは元々WebKitブラウザでは実装されていますが、いくつかの問題があります。レガシーサポートのために標準化されました。<a href="https://www.w3.org/TR/css-overflow-3/#propdef--webkit-line-clamp">CSS Overflow Module Level 3</a> の仕様では、このプロパティを置き換えて問題を回避することを目的として {{cssxref("line-clamp")}} プロパティが定義されています。</p> +<div class="notecard note"> +<p><strong>メモ</strong>: このプロパティは元々 WebKit ブラウザでは実装されていますが、いくつかの問題があります。レガシーサポートのために標準化されました。 <a href="https://www.w3.org/TR/css-overflow-3/#propdef--webkit-line-clamp">CSS Overflow Module Level 3</a> の仕様では、このプロパティを置き換えて問題を回避することを目的として {{cssxref("line-clamp")}} プロパティが定義されています。</p> </div> -<h2 id="文法">文法</h2> +<h2 id="Syntax">構文</h2> -<pre class="brush:css notranslate">/* Keyword value */ +<pre class="brush:css">/* キーワード値 */ -webkit-line-clamp: none; -/* <integer> values */ +/* <integer> 値 */ -webkit-line-clamp: 3; -webkit-line-clamp: 10; -/* Global values */ +/* グローバル値 */ -webkit-line-clamp: inherit; -webkit-line-clamp: initial; -webkit-line-clamp: unset; @@ -40,21 +43,31 @@ translation_of: Web/CSS/-webkit-line-clamp <dt><code>none</code></dt> <dd>コンテンツの行数を制限しません。</dd> <dt>{{cssxref("integer")}}</dt> - <dd>コンテンツを制限する行数を指定します。0より大きい値でなければなりません。</dd> + <dd>コンテンツを制限する行数を指定します。 0 より大きい値でなければなりません。</dd> </dl> -<h2 id="例">例</h2> +<h2 id="Formal_definition">公式定義</h2> -<h3 id="HTML">HTML</h3> +<p>{{CSSInfo}}</p> -<pre class="brush: html notranslate"><p> +<h2 id="Formal_syntax">形式文法</h2> + +{{CSSSyntax}} + +<h2 id="Examples">例</h2> + +<h3 id="Truncating_a_paragraph">段落の切り捨て</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><p> In this example the <code>-webkit-line-clamp</code> property is set to <code>3</code>, which means the text is clamped after three lines. An ellipsis will be shown at the point where the text is clamped. </p></pre> -<h3 id="CSS">CSS</h3> +<h4 id="CSS">CSS</h4> -<pre class="brush: css notranslate">p { +<pre class="brush: css">p { width: 300px; display: -webkit-box; -webkit-box-orient: vertical; @@ -62,38 +75,34 @@ translation_of: Web/CSS/-webkit-line-clamp overflow: hidden; }</pre> -<h3 id="Result">Result</h3> +<h4 id="Result">結果</h4> -<p>{{EmbedLiveSample("例", "100%", "100")}}</p> +<p>{{EmbedLiveSample("Truncating_a_paragraph", "100%", "100")}}</p> -<h2 id="仕様書">仕様書</h2> +<h2 id="Specifications">仕様書</h2> <table class="standard-table"> <thead> <tr> - <th scope="col">Specification</th> - <th scope="col">Status</th> - <th scope="col">Comment</th> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> </tr> </thead> <tbody> <tr> <td>{{SpecName("CSS3 Overflow", "#propdef--webkit-line-clamp", "-webkit-line-clamp")}}</td> <td>{{Spec2("CSS3 Overflow")}}</td> - <td>Initial definition</td> + <td>初回定義</td> </tr> </tbody> </table> -<p>{{cssinfo}}</p> - -<h2 id="ブラウザ互換性">ブラウザ互換性</h2> - - +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> -<p>{{Compat("css.properties.-webkit-line-clamp")}}</p> +<p>{{Compat}}</p> -<h2 id="関連情報">関連情報</h2> +<h2 id="See_also">関連情報</h2> <ul> <li><a href="https://css-tricks.com/line-clampin/">Line Clampin’ (Truncating Multiple Line Text)</a></li> |