Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div { direction: rtl; } </style> </head> <body> <p>As you can see, this text is written with default direction.</p> <div>However, this text is written from right to left as we defined.</div> </body> </html>