Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten. Erfahre mehr über dieses Experiment.

View in English Always switch to English

prefix

Baseline 2023
Newly available

Since ⁨September 2023⁩, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

Der prefix Deskriptor der @counter-style Regel gibt an, welcher Inhalt am Anfang der Zählermarkierung hinzugefügt wird.

Wenn der Zählerwert negativ ist, kommt der prefix vor dem Minuszeichen und allen anderen durch den negative Deskriptor hinzugefügten <symbol>.

Syntax

css
/* <symbol> value: string, image, or identifier */
prefix: "»";
prefix: "Page ";
prefix: url("bullet.png");

Werte

Der prefix Deskriptor nimmt als Wert ein einzelnes <symbol> an:

<symbol>

Gibt ein <symbol> an — eine <string>, ein <image> oder ein <custom-ident> — das der Markierungsdarstellung vorangestellt wird.

Formale Definition

Zugehörige @-Regel@counter-style
Anfangswert"" (the empty string)
Berechneter Wertwie angegeben

Formale Syntax

prefix = 
<symbol>

<symbol> =
<string> |
<image> |
<custom-ident>

<image> =
<url> |
<image()> |
<image-set()> |
<cross-fade()> |
<element()> |
<gradient>

<image()> =
image( <image-tags>? [ <image-src>? , <color>? ]! )

<image-set()> =
image-set( <image-set-option># )

<cross-fade()> =
cross-fade( <cf-image># )

<element()> =
element( <id-selector> )

<image-tags> =
ltr |
rtl

<image-src> =
<url> |
<string>

<image-set-option> =
[ <image> | <string> ] [ <resolution> || type( <string> ) ]?

<cf-image> =
[ <image> | <color> ] &&
<percentage [0,100]>?

<id-selector> =
<hash-token>

Beispiele

Hinzufügen eines Prefix zu einem Zähler

In diesem Beispiel wird jeder Zählernummer "Book " (mit einem Leerzeichen) vorangestellt und gefolgt von einem Doppelpunkt (:). Der Doppelpunkt wird mit dem suffix Deskriptor hinzugefügt.

HTML

html
<ol class="books">
  <li>Flamer, by Mike Curato</li>
  <li>Gender Queer: A Memoir, by Maia Kobabe</li>
  <li>Tricks, by Ellen Hopkins</li>
  <li>The Handmaid's Tale: The Graphic Novel, by Margaret Atwood</li>
  <li>Crank, by Ellen Hopkins</li>
</ol>

CSS

css
@counter-style books {
  system: numeric;
  symbols: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9";
  prefix: "Book ";
  suffix: ": ";
}

.books {
  list-style: books;
  padding-left: 15ch;
}

Ergebnis

Spezifikationen

Specification
CSS Counter Styles Level 3
# counter-style-prefix

Browser-Kompatibilität

Siehe auch