Last modified: 2023-01-01.
LTR | Left-to-right |
RTL | Right-to-left |
UI | User Interface |
Building the application in RTL involves considering the flow of content and the visual hierarchy in a way that is culturally appropriate.
This article will focus on text direction, layout direction and spacing, and icons and imagery.
When designing the UI in RTL, arrange the elements in their reverse order.
Consider figure 1 and 2.
Fig 1. Entity Face Component in LTR
Fig 2. Entity Face Component in RTL
Figure 1 and 2 are images of Jostle’s Entity Face Component in LRT and RTL respectively. In the application, the Entity Face Component serves to show the profile picture of the user, their online status (green circle if they are online), and one other indicator (orange triangle).
In LTR (figure 1), these elements appear in the order that they are described. And their layout is as follows:
However, in RTL (figure 2), the entire component start from the right and their order is reversed. And the order of the elements are as follows:
As the profile picture is the only UI element in row 1, it didn’t change places with other UI elements in the row. However, online indicator and the orange triangle changed places as they are both on row 2.
Also note that the profile picture is not reflected. This is because images typically are not part of the flow of the content. Example of images that are part of the flow of the content and should be reflected along the y-axis are question mark, right arrow, etc.
Now consider the component in figure 3 and 4.
Fig 3. Input Component in LTR
Fig 4. Input Component in RTL
In LTR (figure 3), the layout is as follows:
In RTL (figure 4), this component starts from the right and the layout becomes:
These ideas also carry over to abstract UI elements. E.g. the skeleton of a component in figure 5 and 6.
Fig 5. Skeleton of a News Tile Component in LTR
Fig 6. Skeleton of a News Tile Component in RTL
Images and icons are not always required to reflect along the y-axis if the direction of the icon does not convey any message. E.g. reflecting a “Globe Icon” (🌐) is not required due to symmetry. Reflecting the “Search Icon” (🔍) may not be required as it may not change the meaning or the message that is conveyed with the icon in the context.
Certain icons require transformation. E.g. Icons such as “Forward Arrow” (➡️), “Backward Arrow” (⬅️), “Help Icon” (question mark as used in the language), etc. This is because right indicates “back” and left indicates “forward” in RTL.
“Never use CSS to apply the base direction, but do use logical (‘end’ and ‘start’) on properties or values related to margins, padding, alignment, etc., to make it easy to manage direction changes during localization. Avoid HTML attributes with values of ‘right’ and ‘left’.” [1]
Use padding-inline-start
instead of
padding-left
.
And padding-inline-end
instead of
padding-right
.
Read more: [2]
Use margin-inline-start
instead of
margin-left
.
And margin-inline-end
instead of
margin-right
.
Read more: [3]
Values for CSS rules like
.container {
/* padding: top | right | bottom | left */
padding: 0 16px 8px 4px;
}
should be written as
.container {
padding-inline-start: 4px;
padding-inline-end: 14px;
padding-bottom: 8px;
}
Note that there are CSS rules for top and bottom. But as they do not affect “left” and “right” directions, we can simply use the top and bottom rules.
Read more: [4]
There are many tools and browser plugins that can with RTL development. However a quick way to test if that the layout and spacings are correct in RTL is forcing the DOM to render in RTL. This can be achieved by opening the Dev Tools and:
direction: rtl
in element.styles
,
ordir="rtl"
attribute to the div
(or
other HTML elements)Here, rendering in RTL is achieved by adding
direction: rtl
in element.styles
.
Fig 7. Forcing elements to render in RTL using CSS style
Here, RTL is achieved by adding dir="rtl"
attribute to
the div
.
Fig 8. Forcing elements to render in RTL using HTML attribute
This article is adapted from documentation that was initially published internally for Jostle on Dec 17, 2021. It was later release for publication on Oct 24, 2023.
[1] | Richard Ishida et. al. “Structural markup and right-to-left text in HTML”. [Online]. Available: https://www.w3.org/International/questions/qa-html-dir |
[2] | Mozilla Contributors. “padding-inline-start - CSS: Cascading Style Sheets | MDN”. [Online]. Available: https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start |
[3] | Mozilla Contributors. “margin-inline-start - CSS: Cascading Style Sheets | MDN”. [Online]. Available: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-inline-start |
[4] | Temani Afif. “What is the difference between margin-block-start and margin-top? - Stack Overflow” [Online]. Available: https://stackoverflow.com/questions/59909792/what-is-the-difference-between-margin-block-start-and-margin-top |