blob: 3f9e21ec00f340c4ca25ebc4c3a8994ad5ab28d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|