RTL Supported

 

1. RTL Support in CSS

html[dir="rtl"] { direction: rtl; text-align: right; } html[dir="ltr"] { direction: ltr; text-align: left; }

2. Toggle RTL & LTR Dynamically (JavaScript)

function toggleDirection() { if (document.documentElement.dir === "ltr") { document.documentElement.dir = "rtl"; } else { document.documentElement.dir = "ltr"; } }

RTL to Blog Sections

مرحبًا بك في The Physics Next

نحن نقدم لك أحدث الأبحاث والابتكارات في عالم الفيزياء.

Post a Comment

0Comments

We will love to hear your thoughts — please share your comment on the blog post above!

Post a Comment (0)