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...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
Our brains are wired to find things we are looking for - if your always cynical or waiting for things to go wrong, then your life will reflect that. On the other hand, having a positive outlook on life will bring you joy and provide you with inspiration when you least expect it ☀️🍉🌴
Unknown
Random CSS Property

:user-valid (:-moz-ui-valid)

The :user-valid CSS pseudo-class represents any validated form element whose value validates correctly based on its validation constraints. However, unlike :valid it only matches once the user has interacted with it.
:user-valid css reference