blob: 22aaffb7c8911bb45d0b8b7f072de5cfa9152ca1 (
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
|
---
title: suffix
slug: Web/CSS/@counter-style/suffix
tags:
- '@counter-style'
- アットルール記述子
- CSS
- CSS カウンタースタイル
- CSS 記述子
- リファレンス
browser-compat: css.at-rules.counter-style.suffix
---
{{CSSRef}}
**`suffix`** は {{cssxref("@counter-style")}} ルールの記述子で、マーカーの表現に追加されるものを指定します。
## 構文
```css
/* <symbol> values */
suffix: "";
suffix: ") ";
suffix: url(bullet.png);
```
### 値
- `<symbol>`
- : マーカー表現に追加される記号を指定します。 {{cssxref("<string>")}}, {{cssxref("<image>")}}, {{cssxref("<custom-ident>")}} が指定できます。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### カウンターの接尾辞を設定
#### HTML
```html
<ul class="choices">
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>None of the above</li>
</ul>
```
#### CSS
```css
@counter-style options {
system: fixed;
symbols: A B C D;
suffix: ") ";
}
.choices {
list-style: options;
}
```
#### 結果
{{ EmbedLiveSample('Setting_a_suffix_for_a_counter')}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{Cssxref("list-style")}}, {{Cssxref("list-style-image")}}, {{Cssxref("list-style-position")}}
- {{cssxref("symbols()")}}, 無名のカウンタースタイルを生成する関数記法
|