mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
10 lines
233 B
HTML
10 lines
233 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div.one::before { content: '1: '; }
|
|
div.five::before { content: '5: '; }
|
|
div.six::before { content: '6: '; }
|
|
</style>
|
|
<div class='one'>One</div>
|
|
<div class='five'>Five</div>
|
|
<div class='six'>Six</div>
|
|
</html>
|