mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
13 lines
283 B
HTML
13 lines
283 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style type="text/css">
|
||
|
|
|
||
|
|
div::first-letter { color: magenta; }
|
||
|
|
span:before { content: "\"" "This "; }
|
||
|
|
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body style="width: 1em;" onload="document.getElementById('div').style.direction = 'rtl';">
|
||
|
|
<div id="div"><span>is text</span></div>
|
||
|
|
</body>
|
||
|
|
</html>
|