mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
13 lines
256 B
HTML
13 lines
256 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
span {
|
|
counter-reset: item;
|
|
counter-increment: item;
|
|
}
|
|
span span span::before {
|
|
content: counters(item, ".", -moz-thai);
|
|
content: counters(item, ".", thai);
|
|
}
|
|
</style>
|
|
<span><span><span></span></span></span>
|