You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>In addition to the 2.1 counter styles, a large number of additional counter styles are defined in the <ahref="//dev.w3.org/csswg/css-counter-styles">Additional Predefined Counter Styles for CSS</a> document. The majority of the additional counter styles are additional alphabetic or numeric styles for various world languages. <spanclass='note'>The normative status of that document is currently undecided, but at minimum it provides a large resource of counter styles which can be copied into an author's stylesheet.</span></p>
<dd>A filled square, similar to ◾ U+25FE BLACK MEDIUM SMALL SQUARE.</dd>
1696
1691
</dl>
1697
1692
1693
+
<p>Finally, UAs must define a 'decimal' style with behavior matching the following stylesheet fragment, as if it were defined by a ''@counter-style'' rule in the UA stylesheet. <spanclass='note'>This style is defined specially because naming a counter style ''decimal'' is a syntax error, so it can't actually be defined just by including it in the UA stylesheet. This restriction exists so that ''decimal'' is always present as a valid fallback type, regardless of what an author or user defines in their own stylesheets.</span></p>
1694
+
1695
+
<pre>
1696
+
@counter-style <dfn>decimal</dfn> {
1697
+
type: numeric;
1698
+
symbols: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9';
1699
+
}</pre>
1700
+
1698
1701
<pclass='issue'>Do we need to predefine the styles that are present in CSS2 but didn't make it to CSS2.1? They're all present in the "Additional Predefined Counter Styles" document.</p>
0 commit comments