fallback
Quick Summary for fallback (@counter-style)
The fallback descriptor can be used to specify a counter style to fall back to if the current counter style cannot create a marker representation for a particular counter value.
Code Usage for fallback (@counter-style)
/* Keyword values */ fallback: lower-alpha; fallback: custom-gangnam-style; 
More Details for fallback (@counter-style)

fallback

The fallback descriptor can be used to specify a counter style to fall back to if the current counter style cannot create a marker representation for a particular counter value.

Syntax

/* Keyword values */ fallback: lower-alpha; fallback: custom-gangnam-style; 

Description

If the specified fallback style is also unable to construct a representation, then its fallback style will be used. If a valid fallback style is not specified, it defaults to decimal.

A couple of scenarios where a fallback style will be used are:

When the range descriptor is specified for a counter style, the fallback style will be used to represent values that fall outside the range. When the fixed system is used and there are not enough symbols to cover all the list items, the fallback style will be used for the rest of the list items.

Formal definition

Related at-rule@counter-style
Initial valuedecimal
Computed valueas specified

Formal syntax

<counter-style-name>

where <counter-style-name> = <custom-ident>

Examples

Specifying a fallback counter style

HTML
<ul class="list">   <li>One</li>   <li>Two</li>   <li>Three</li>   <li>Four</li>   <li>Five</li> </ul> 
CSS
@counter-style fallback-example {   system: fixed;   symbols: "\24B6" "\24B7" "\24B8";   fallback: upper-alpha; }  .list {   list-style: fallback-example; } 
Result

Specifications

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

See also

list-style, list-style-image, list-style-position symbols(): the functional notation creating anonymous counter styles

Last modified: Dec 20, 2021, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote

“Make no mistake: This is not your diary. You are not letting it all hang out. You are picking and choosing every single word.”


Dani Shapiro
Random CSS Property

border-radius

The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
border-radius css reference