blob: cb2e921c1f636b3f148f3b662366657119c45549 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<style>
span span span::before {
counter-increment: item;
content: counter(item, -moz-thai) "." counter(item, -moz-thai) "." counter(item, -moz-thai);
content: counter(item, thai) "." counter(item, thai) "." counter(item, thai);
}
</style>
<span><span><span></span></span></span>
|