1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00
ladybird/Tests/LibWeb/Layout/input/css-counters/basic.html
2025-06-03 11:03:19 +01:00

13 lines
286 B
HTML

<!DOCTYPE html>
<style>
div {
counter-increment: line;
counter-reset: word;
}
p {
counter-increment: word;
}
p::before {
content: counter(line) "." counter(word) ": ";
}
</style><div><p>Never<p>Gonna<p>Give<p>You<p>Up</div><div><p>Never<p>Gonna<p>Let<p>You<p>Down</div>