mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
16 lines
346 B
HTML
16 lines
346 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body { background: lightblue;}
|
|
.first:first-letter { color: red; }
|
|
.right { direction: rtl; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="first"><span>abc</span></div>
|
|
<div class="first"><span class="right">def</span></div>
|
|
<div class="first right"><span>geh</span></div>
|
|
</body>
|
|
|
|
</html>
|