mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
14 lines
283 B
HTML
14 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>
|