HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(3){ direction: rtl; } </style> </head> <body> <h1>CSS direction Property</h1> <p>This is a paragraph goes from left to right (ltr). This is default.</p> <p>This is a paragraph goes from right to left.</p> </body> </html>
OUTPUT
×

Save as Private