diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-05 00:18:12 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-13 01:58:21 +0900 |
commit | c30862917dbd010ac7489941ef50592c9d2c6005 (patch) | |
tree | e3a6840d3ec1a72181d31cfb88d6dce26baf91b2 /files/ja/web/css/hanging-punctuation/index.html | |
parent | f79037786b69a3dd1778d65cd3fbed97989b3a20 (diff) | |
download | translated-content-c30862917dbd010ac7489941ef50592c9d2c6005.tar.gz translated-content-c30862917dbd010ac7489941ef50592c9d2c6005.tar.bz2 translated-content-c30862917dbd010ac7489941ef50592c9d2c6005.zip |
CSS Textの文書の変換準備
Diffstat (limited to 'files/ja/web/css/hanging-punctuation/index.html')
-rw-r--r-- | files/ja/web/css/hanging-punctuation/index.html | 122 |
1 files changed, 0 insertions, 122 deletions
diff --git a/files/ja/web/css/hanging-punctuation/index.html b/files/ja/web/css/hanging-punctuation/index.html deleted file mode 100644 index 858ebb6b1c..0000000000 --- a/files/ja/web/css/hanging-punctuation/index.html +++ /dev/null @@ -1,122 +0,0 @@ ---- -title: hanging-punctuation -slug: Web/CSS/hanging-punctuation -tags: - - CSS - - CSS Property - - CSS Text - - CSS テキスト - - CSS プロパティ - - Experimental - - Reference - - リファレンス -translation_of: Web/CSS/hanging-punctuation ---- -<div>{{CSSRef}}</div> - -<p><span class="seoSummary"><strong><code>hanging-punctuation</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、区切り記号をテキストの行頭や行末にぶら下げるべきかどうかを指定します。ぶら下げられる区切り記号は行ボックスの外側に配置されれることがあります。</span></p> - -<pre class="brush:css no-line-numbers notranslate">/* キーワード値 */ -hanging-punctuation: none; -hanging-punctuation: first; -hanging-punctuation: last; -hanging-punctuation: force-end; -hanging-punctuation: allow-end; - -/* 2 つのキーワード */ -hanging-punctuation: first force-end; -hanging-punctuation: first allow-end; -hanging-punctuation: first last; -hanging-punctuation: last force-end; -hanging-punctuation: last allow-end; - -/* 3 つのキーワード */ -hanging-punctuation: first force-end last; -hanging-punctuation: first allow-end last; - -/* グローバル値 */ -hanging-punctuation: inherit; -hanging-punctuation: initial; -hanging-punctuation: unset; -</pre> - -<p>{{CSSInfo}}</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<p><code>hanging-punctuation</code> プロパティは 1 つ、2 つ、 3 つの値で指定することができます。</p> - -<ul> - <li><strong>値1つ</strong>の構文は、下記の値リストのキーワード値のいずれか 1 つを使用します。</li> - <li><strong>値2つ</strong>の構文は、次のうち 1 つを使用します。 - <ul> - <li><code>first</code> と併せて、<code>last</code>, <code>allow-end</code>, <code>force-end</code> のいずれか</li> - <li><code>last</code> と併せて、<code>first</code>, <code>allow-end</code>, <code>force-end</code> のいずれか</li> - </ul> - </li> - <li><strong>値3つ</strong>の構文は、次のうち 1 つを使用します。 - <ul> - <li><code>first</code>, <code>allow-end</code>, <code>last</code></li> - <li><code>first</code>, <code>force-end</code>, <code>last</code></li> - </ul> - </li> -</ul> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt><code>none</code></dt> - <dd>文字のぶら下げを行いません。</dd> - <dt><code>first</code></dt> - <dd>要素の最初の書式設定された行頭にある、開き括弧または引用符をぶら下げます。</dd> - <dt><code>last</code></dt> - <dd>要素の最後の書式設定された行末にある、閉じ括弧または引用符をぶら下げます。</dd> - <dt><code>force-end</code></dt> - <dd>行末の句読点をぶら下げます。</dd> - <dt><code>allow-end</code></dt> - <dd>句読点をぶら下げないと行末が揃わない場合に、句読点をぶら下げます。</dd> -</dl> - -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> - -{{CSSSyntax}} - -<h2 id="Example" name="Example">例</h2> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html notranslate" style="white-space: pre-wrap;"><p>“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dignissim nunc mauris, et sollicitudin est scelerisque sed. Praesent laoreet tortor massa, sit amet vulputate nulla pharetra ut.”</p></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css notranslate">p { - hanging-punctuation: first last; - margin: .5rem; -}</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>{{EmbedLiveSample("Example")}}</p> - -<h2 id="Specifications" name="Specifications">仕様書</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName("CSS3 Text", "#hanging-punctuation-property", "hanging-punctuation")}}</td> - <td>{{Spec2("CSS3 Text")}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.hanging-punctuation")}}</p> |