--- title: prefix slug: Web/CSS/@counter-style/prefix tags: - '@counter-style' - CSS - CSS カウンタースタイル - CSS 記述子 - リファレンス translation_of: Web/CSS/@counter-style/prefix ---
{{CSSRef}}

{{cssxref('@counter-style')}} 規則の prefix 記述子は、マーカーに先立って表示される内容を指定します。指定されていない場合、既定値は "" (空文字列) になります。

{{cssinfo}}

構文

/* <symbol> 値 */
prefix: "»";
prefix: "Page ";
prefix: url(bullet.png);

<symbol>
マーカーに先立って表示される <symbol> を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。

形式文法

{{csssyntax}}

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>

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('Example') }}

仕様書

仕様書 状態 備考
{{SpecName('CSS3 Counter Styles', '#descdef-counter-style-prefix', 'prefix')}} {{Spec2('CSS3 Counter Styles')}} 初回定義

ブラウザーの対応

{{Compat("css.at-rules.counter-style.prefix")}}

関連情報