Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div.text { direction: rtl; unicode-bidi: embed; } </style> </head> <body> <h2>Unicode-bidi property example</h2> <div>Normal writing direction.</div> <div class="text">Using "embed" value.</div> </body> </html>