mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|