402380-2.html (385B)
1 <html> 2 <head> 3 <style type="text/css"> 4 5 div::first-letter { color: green; } 6 span:before { content: open-quote "This "; } 7 span:after { content: close-quote; } 8 9 </style> 10 </head> 11 12 <body style="font-family: monospace; width: 7ch; border: 1px solid orange;" 13 onload="document.getElementById('div').style.direction = 'rtl';"> 14 15 <div id="div"><span>is text</span></div> 16 17 </body> 18 </html>