File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1386,7 +1386,12 @@ Appendix A: Sample Style Sheet For HTML</h2>
1386
1386
1387
1387
<em> This section is informative, not normative.
1388
1388
The [[HTML]] <a href="https://html.spec.whatwg.org/multipage/rendering.html#lists">Rendering</a> chapter
1389
- defines the normative default properties that apply to HTML lists.</em>
1389
+ defines the normative default properties that apply to HTML lists;
1390
+ this sample style sheet is provided to illustrate the CSS features
1391
+ using familiar markup conventions.</em>
1392
+
1393
+ ISSUE: Discussion of how to support <code> ol[reversed] </code> list numbering in CSS is ongoing.
1394
+ See, e.g. <a href="https://github.com/w3c/csswg-drafts/issues/4181">Issue 4181</a> .
1390
1395
1391
1396
<pre>
1392
1397
/* Set up list items */
@@ -1423,6 +1428,7 @@ Appendix A: Sample Style Sheet For HTML</h2>
1423
1428
counter-set: list-item attr(value integer, 1);
1424
1429
}
1425
1430
1431
+ <!--
1426
1432
/* Handling reversed lists */
1427
1433
ol[reversed] {
1428
1434
counter-reset: list-item calc(attr(start integer, **magic**) + 1);
@@ -1431,6 +1437,7 @@ Appendix A: Sample Style Sheet For HTML</h2>
1431
1437
ol[reversed] > li {
1432
1438
/* HTML implies 'counter-increment: list-item -1' */
1433
1439
}
1440
+ -->
1434
1441
1435
1442
/* Box Model Rules */
1436
1443
ol, ul {
You can’t perform that action at this time.
0 commit comments