fix: parsing counter content in pseudo element (#2640)

This commit is contained in:
Niklas von Hertzen
2021-08-09 18:43:42 +08:00
committed by GitHub
parent e429e0443a
commit 1941b9e0ac
2 changed files with 24 additions and 5 deletions

View File

@ -86,6 +86,20 @@
of the section counter, separated
by a period */
}
.issue-2639 {
display: flex;
}
.issue-2639::before {
content: counter(ol0) '. ';
counter-increment: ol0;
}
.issue-2639:first-child {
counter-reset: ol0;
}
</style>
</head>
<body>
@ -163,5 +177,10 @@
<li>item</li> <!-- 2 -->
</ol>
<ol>
<li class="issue-2639">one</li>
<li class="issue-2639">two</li>
</ol>
</body>
</html>