mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09:00
10 lines
236 B
HTML
10 lines
236 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div.one::before { content: '1: '; }
|
|
div.four::before { content: '4: '; }
|
|
div.five::before { content: '5: '; }
|
|
</style>
|
|
<div class='one'>One</div>
|
|
<div class='four'>Four</div>
|
|
<div class='five'>Five</div>
|
|
</html>
|