910e62b5创建于 1月15日历史提交
<!doctype html>

<style>
    body { counter-reset: x 0; }

    div {
        counter-increment: inherit;
    }

    div:before {
        content: counter(x);
    }
</style>

<div></div>