published
5 January 2025
by
Ray Morgan
updated
6 January 2025

Bidirectional Text and Layout

Bidirectional (bidi) text refers to content that includes both left-to-right (LTR) and right-to-left (RTL) scripts within the same text or layout. Managing bidi text and layout is essential for creating web forms that accommodate languages like Arabic, Hebrew, or Urdu, which are written in RTL, alongside LTR elements like numbers, punctuation, or other languages. Proper handling of bidi text ensures readability, usability, and accessibility for global audiences.

Understanding Bidirectional Text

Bidi text occurs when a single piece of content includes both RTL and LTR elements. For instance, an Arabic sentence might include Latin-script names or numbers, creating a mix of directional flows:

  • Arabic with numbers: "العدد هو 12345."
  • English and Arabic: "The code is: الكود."

The Unicode Bidirectional Algorithm automatically determines the directionality of text based on the character types. However, developers often need to manually fine-tune the behavior to ensure consistent alignment and readability.

Key Considerations for Bidirectional Layouts

  1. Text Directionality: Use the dir attribute to specify the text direction for elements. For LTR text, the default behavior usually suffices, but it’s good practice to explicitly set dir="ltr" when mixing scripts to avoid unexpected behavior. For example:

    <div dir="rtl">مرحبا بكم في الموقع</div>
  2. Mixed-Content Handling: When LTR and RTL text coexist, visual alignment can become inconsistent. Proper markup and styling ensure that mixed-content fields display correctly.

  3. Numerals in RTL Scripts: Numbers in RTL scripts typically appear in LTR order but follow the surrounding RTL flow. For example: "عمره 25 سنة."

  4. Mirroring UI Elements: In RTL layouts, UI elements such as text fields, buttons, and icons should be mirrored. For example, the placement of a "Back" button on the left in LTR layouts should appear on the right in RTL layouts.

Best Practices for Bidirectional Text and Layouts

  1. Set Text Direction Explicitly: Use the dir attribute at the container level for overall layout direction and on specific elements for localized adjustments.

    <form dir="rtl">
        <label for="name">الاسم:</label>
        <input type="text" id="name" name="name" dir="rtl">
    </form>
  2. Use the bdi and bdo Elements:

    • The <bdi> (bidirectional isolation) element isolates a section of text to prevent it from affecting the direction of its surrounding content. This is especially useful for user-generated content.
    <p>Product: <bdi>123-مرحبا</bdi></p>
    
    • The <bdo> (bidirectional override) element forces specific text directionality:
    <bdo dir="rtl">12345</bdo>
    
  3. Mirror UI Elements in RTL Layouts:

    • Mirror directional icons, padding, and alignment for a natural flow in RTL layouts. CSS can simplify this process using the direction property:
    body[dir="rtl"] {
        text-align: right;
    }
    
  4. Align Text Fields Properly:

    • Input fields in RTL scripts should align text to the right by default. Use CSS to enforce this:
    input[dir="rtl"] {
        text-align: right;
    }
    
  5. Use Logical Properties in CSS:

    • Instead of margin-left or padding-right, use logical properties like margin-inline-start and padding-inline-end to handle bidi layouts effectively:
    .button {
        padding-inline-start: 10px;
        padding-inline-end: 20px;
    }
    

Examples of Bidirectional Layouts

  1. Multilingual Address Form: A shipping form might include fields for addresses in both Arabic and English. By setting the appropriate dir attributes, users can input data naturally:

    <form>
        <label for="address">Address (Arabic):</label>
        <input type="text" id="address" name="address" dir="rtl">
    </form>
    
  2. Number Entry in RTL Scripts: Ensure that numeric fields in an RTL context behave predictably. For example:

    <input type="text" name="age" dir="rtl" placeholder="العمر">
    
  3. Mixed-Content Text Area: A text area for user comments might include mixed RTL and LTR input. Using <bdi> ensures proper isolation of each script:

    <textarea>
        مرحباً, my name is John.
    </textarea>
    

Common Challenges and Solutions

  1. Improper Text Alignment:

    • Problem: Text fields in RTL scripts align left by default, creating a disjointed experience.
    • Solution: Explicitly set text-align: right for RTL fields.
  2. Unintended Layout Mirroring:

    • Problem: Some elements, like icons or images, might unintentionally flip in RTL layouts.
    • Solution: Use the transform property in CSS to control mirroring selectively:
    img {
        transform: scaleX(-1);
    }
    
  3. Inconsistent Directionality in User-Generated Content:

    • Problem: User-generated content can introduce unexpected bidi behavior.
    • Solution: Use <bdi> to isolate problematic text or sanitize input on the server side.

Practical Implementation Tips

  1. Test Across Languages: Validate your layout with a mix of RTL and LTR content, including edge cases like numbers, punctuation, and nested languages.

  2. Use Frameworks with Bidi Support: Many modern frameworks, like Bootstrap and Material-UI, offer built-in support for bidi layouts, simplifying the process.

  3. Incorporate Real User Feedback: Test your forms with native speakers of RTL languages to identify usability issues and refine the design.