mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
18 lines
277 B
HTML
18 lines
277 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span:before { content: '"'; }
|
|
span:after { content: '"'; }
|
|
:after { border: 3px solid green; }
|
|
:first-letter { color: green; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p><span>Foo</span></p>
|
|
|
|
<p id="p2"><span id="q2"></span></p>
|
|
|
|
</body>
|
|
</html>
|