diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-19 02:32:11 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-26 12:48:20 +0900 |
commit | 4773297867ccefe538d830988519836a7b362450 (patch) | |
tree | 353dd4f1883b77c9e2a683da6dccb539d5428377 /files/ja/web/css/@counter-style | |
parent | 6d0fbd69890e5de88bc7cbc3adfe5dc1eda8f799 (diff) | |
download | translated-content-4773297867ccefe538d830988519836a7b362450.tar.gz translated-content-4773297867ccefe538d830988519836a7b362450.tar.bz2 translated-content-4773297867ccefe538d830988519836a7b362450.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/@counter-style')
-rw-r--r-- | files/ja/web/css/@counter-style/prefix/index.md | 92 |
1 files changed, 42 insertions, 50 deletions
diff --git a/files/ja/web/css/@counter-style/prefix/index.md b/files/ja/web/css/@counter-style/prefix/index.md index 8a846a92ff..363196c9d2 100644 --- a/files/ja/web/css/@counter-style/prefix/index.md +++ b/files/ja/web/css/@counter-style/prefix/index.md @@ -3,52 +3,60 @@ title: prefix slug: Web/CSS/@counter-style/prefix tags: - '@counter-style' + - アットルール記述子 - CSS - CSS カウンタースタイル - CSS 記述子 - リファレンス +browser-compat: css.at-rules.counter-style.prefix translation_of: Web/CSS/@counter-style/prefix --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p>{{cssxref('@counter-style')}} 規則の <code><strong>prefix</strong></code> 記述子は、マーカーに先立って表示される内容を指定します。指定されていない場合、既定値は <code>""</code> (空文字列) になります。</p> +**`prefix`** は {{cssxref('@counter-style')}} ルールの記述子で、マーカーに先立って表示される内容を指定します。指定されていない場合、既定値は `""` (空文字列) になります。 -<p>{{cssinfo}}</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush: css">/* <symbol> 値 */ +```css +/* <symbol> 値 */ prefix: "»"; prefix: "Page "; prefix: url(bullet.png); -</pre> +``` + +### 値 -<h3 id="Values" name="Values">値</h3> +- `<symbol>` + - : マーカーに先立って表示される `<symbol>` を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。 -<dl> - <dt><code><symbol></code></dt> - <dd>マーカーに先立って表示される <code><symbol></code> を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。</dd> -</dl> +## 公式定義 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +{{cssinfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Example" name="Example">例</h2> +## 例 -<h3 id="HTML">HTML</h3> +### カウンターに接頭辞を追加 -<pre class="brush: html"><ul class="index"> - <li>The Boy Who Lived</li> - <li>The Vanishing Glass</li> - <li>The Letters from No One</li> - <li>The Keeper of the Keys</li> - <li>Diagon Alley</li> -</ul></pre> +#### HTML -<h3 id="CSS">CSS</h3> +```html +<ul class="index"> + <li>The Boy Who Lived</li> + <li>The Vanishing Glass</li> + <li>The Letters from No One</li> + <li>The Keeper of the Keys</li> + <li>Diagon Alley</li> +</ul> +``` -<pre class="brush: css">@counter-style chapters { +#### CSS + +```css +@counter-style chapters { system: numeric; symbols: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"; prefix: 'Chapter '; @@ -57,38 +65,22 @@ prefix: url(bullet.png); .index { list-style: chapters; padding-left: 15ch; -}</pre> +} +``` <h3 id="Result" name="Result">結果</h3> -<p>{{ EmbedLiveSample('Example') }}</p> +{{ EmbedLiveSample('Adding_a_prefix_to_a_counter') }} -<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 Counter Styles', '#descdef-counter-style-prefix', 'prefix')}}</td> - <td>{{Spec2('CSS3 Counter Styles')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("css.at-rules.counter-style.prefix")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li>{{Cssxref("list-style")}}, {{Cssxref("list-style-image")}}, {{Cssxref("list-style-position")}}</li> - <li>{{cssxref("symbols", "symbols()")}}、 匿名のカウンタースタイルを作成するために使用される関数形式の記述方法です。</li> -</ul> +- {{Cssxref("list-style")}}, {{Cssxref("list-style-image")}}, {{Cssxref("list-style-position")}} +- {{cssxref("symbols()", "symbols()")}}、無名のカウンタースタイルを作成する関数記法
\ No newline at end of file |