diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/css/-webkit-line-clamp | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/css/-webkit-line-clamp')
-rw-r--r-- | files/ja/web/css/-webkit-line-clamp/index.html | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/files/ja/web/css/-webkit-line-clamp/index.html b/files/ja/web/css/-webkit-line-clamp/index.html new file mode 100644 index 0000000000..8e52755eff --- /dev/null +++ b/files/ja/web/css/-webkit-line-clamp/index.html @@ -0,0 +1,101 @@ +--- +title: '-webkit-line-clamp' +slug: Web/CSS/-webkit-line-clamp +tags: + - '-webkit-line-clamp' + - CSS + - CSS Property +translation_of: Web/CSS/-webkit-line-clamp +--- +<div>{{CSSRef}}</div> + +<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("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> + +<h2 id="文法">文法</h2> + +<pre class="brush:css notranslate">/* Keyword value */ +-webkit-line-clamp: none; + +/* <integer> values */ +-webkit-line-clamp: 3; +-webkit-line-clamp: 10; + +/* Global values */ +-webkit-line-clamp: inherit; +-webkit-line-clamp: initial; +-webkit-line-clamp: unset; +</pre> + +<dl> + <dt><code>none</code></dt> + <dd>コンテンツの行数を制限しません。</dd> + <dt>{{cssxref("integer")}}</dt> + <dd>コンテンツを制限する行数を指定します。0より大きい値でなければなりません。</dd> +</dl> + +<h2 id="例">例</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html notranslate"><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> + +<pre class="brush: css notranslate">p { + width: 300px; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 3; + overflow: hidden; +}</pre> + +<h3 id="Result">Result</h3> + +<p>{{EmbedLiveSample("例", "100%", "100")}}</p> + +<h2 id="仕様書">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</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> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="ブラウザ互換性">ブラウザ互換性</h2> + + + +<p>{{Compat("css.properties.-webkit-line-clamp")}}</p> + +<h2 id="関連情報">関連情報</h2> + +<ul> + <li><a href="https://css-tricks.com/line-clampin/">Line Clampin’ (Truncating Multiple Line Text)</a></li> + <li>{{cssxref("line-clamp")}}</li> +</ul> |