blob: 363196c9d261991a505ad28acb156e06bd1a4e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
---
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
/* <symbol> 値 */
prefix: "»";
prefix: "Page ";
prefix: url(bullet.png);
```
### 値
- `<symbol>`
- : マーカーに先立って表示される `<symbol>` を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} の何れかです。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### カウンターに接頭辞を追加
#### HTML
```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
```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;
}
```
<h3 id="Result" name="Result">結果</h3>
{{ EmbedLiveSample('Adding_a_prefix_to_a_counter') }}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{Cssxref("list-style")}}, {{Cssxref("list-style-image")}}, {{Cssxref("list-style-position")}}
- {{cssxref("symbols()", "symbols()")}}、無名のカウンタースタイルを作成する関数記法
|