Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING

W3.CSS - RTL

مرحبا بك في موقعي

هذا مثال على تخطيط من اليمين إلى اليسار باستخدام W3.CSS.

RTL (Right to Left) Support

W3.CSS Version 5 has built-in support for right-to-left (RTL) languages, which makes it easier to create websites that cater to Arabic, Hebrew, Persian, or other RTL language speakers.


Enable RTL Support

The w3-rtlclass adjusts text direction and alignment for RTL layouts.

You can apply w3-rtl to the <body> tag for global RTL:

Example

<body class="w3-container w3-rtl">

<h2>مرحبا بك في موقعي</h2>
<p>هذا مثال على تخطيط من اليمين إلى اليسار باستخدام W3.CSS.</p>

</body>

Try It Yourself »

Or you can apply w3-rtl to a part of the document:

Example

<div class="w3-container w3-rtl">

<h2>مرحبا بك في موقعي</h2>
<p>هذا مثال على تخطيط من اليمين إلى اليسار باستخدام W3.CSS.</p>

</div>

Try It Yourself »


Reverse RTL

To revert any section to left-to-right, you can use the w3-ltr class.

Example

<div class="w3-ltr">
  <p>This section is back to left-to-right.</p>
</div>

Try It Yourself »


What Else to Do?

Use dir="rtl" in the <html> tag for proper semantic rendering.

Use class="w3-rtl" in the <body> tag to ensure all W3.CSS components respect the RTL direction.

Use margin-right for main content instead of margin-left.

Position the sidebar using right:0.

Example

<html lang="ar" dir="rtl">

<body class="w3-rtl">

<main class="w3-container" style="margin-right:200px">

<nav class="w3-sidebar" style="width:200px; right:0">

Try It Yourself »

Remember to adjust other text alignment, margins, paddings and floats where applicable.

Ensure that layout components such as navigation, cards, or columns flip appropriately for RTL reading.


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.