--- title: prefix slug: Web/CSS/@counter-style/prefix tags: - '@counter-style' - CSS - CSS カウンタースタイル - CSS 記述子 - リファレンス translation_of: Web/CSS/@counter-style/prefix ---
{{cssxref('@counter-style')}} 規則の prefix
記述子は、マーカーに先立って表示される内容を指定します。指定されていない場合、既定値は ""
(空文字列) になります。
{{cssinfo}}
/* <symbol> 値 */ prefix: "»"; prefix: "Page "; prefix: url(bullet.png);
<symbol>
<symbol>
を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。<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>
@counter-style chapters { system: numeric; symbols: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"; prefix: 'Chapter '; } .index { list-style: chapters; padding-left: 15ch; }
{{ EmbedLiveSample('Example') }}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS3 Counter Styles', '#descdef-counter-style-prefix', 'prefix')}} | {{Spec2('CSS3 Counter Styles')}} | 初回定義 |
{{Compat("css.at-rules.counter-style.prefix")}}