mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
13 lines
269 B
HTML
13 lines
269 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div.nine::before { content: '9: '; }
|
|
div.ten::before { content: '10: '; }
|
|
div.eleven::before { content: '11: '; }
|
|
</style>
|
|
<div>
|
|
<div class='nine'>Nine</div>
|
|
<div class='ten'>Ten</div>
|
|
<div class='eleven'>Eleven</div>
|
|
</div>
|
|
</html>
|