--- 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 --- {{CSSRef}} **`prefix`** は {{cssxref('@counter-style')}} ルールの記述子で、マーカーに先立って表示される内容を指定します。指定されていない場合、既定値は `""` (空文字列) になります。 ## 構文 ```css /* 値 */ prefix: "»"; prefix: "Page "; prefix: url(bullet.png); ``` ### 値 - `` - : マーカーに先立って表示される `` を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。 ## 公式定義 {{cssinfo}} ## 形式文法 {{csssyntax}} ## 例 ### カウンターに接頭辞を追加 #### HTML ```html
  • The Boy Who Lived
  • The Vanishing Glass
  • The Letters from No One
  • The Keeper of the Keys
  • Diagon Alley
``` #### CSS ```css @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('Adding_a_prefix_to_a_counter') }} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - {{Cssxref("list-style")}}, {{Cssxref("list-style-image")}}, {{Cssxref("list-style-position")}} - {{cssxref("symbols()", "symbols()")}}、無名のカウンタースタイルを作成する関数記法