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>