mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-20 02:40:27 +00:00
11 lines
227 B
HTML
11 lines
227 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
counter-reset: section;
|
||
|
|
}
|
||
|
|
div::before {
|
||
|
|
counter-increment: section;
|
||
|
|
content: counter(section) ". ";
|
||
|
|
}
|
||
|
|
</style><div id=a>a</div><div id=b>b</div><div id=c>c</div>
|