mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00
13 lines
286 B
HTML
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>
|