RTL and Punctuation

By  on  

Working on a website that supports RTL (right-to-left) really opens your eyes to some problem in modern web development.  Despite websites being read in RTL since, well, LTR, it's amazing that we don't have more widely supported -start and -endproperties and values in CSS.  The side effect of that is needing to offset LTR and RTL padding, margin, left/right, and other properties. Another issue with RTL seems to be punctuation and digits -- they aren't always where they should be.  Check out these examples:

In LTR:
	"I am the best ever!"

in RTL:
	"!I am the best ever"

In LTR:
	"The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later."

in RTL:
	".The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later"

Weird, right?  You would think that browsers would simply ensure those characters would follow the same format as LTR, but that isn't the case.  To ensure those issues don't occur, you can use the <bdi> tag:

<bdi>This text should have bi-directionally correct punctuation!</bdi>

Unfortunately this tag is only supported in Chrome and Firefox, but it definitely prevents the odd punctuation issue in those browsers.  Why the issue pops up in the first place isn't something I can answer with any big of expertise, but jump to this solution when it pops up!

Recent Features

  • By
    Being a Dev Dad

    I get asked loads of questions every day but I'm always surprised that they're rarely questions about code or even tech -- many of the questions I get are more about non-dev stuff like what my office is like, what software I use, and oftentimes...

  • By
    6 Things You Didn&#8217;t Know About Firefox OS

    Firefox OS is all over the tech news and for good reason:  Mozilla's finally given web developers the platform that they need to create apps the way they've been creating them for years -- with CSS, HTML, and JavaScript.  Firefox OS has been rapidly improving...

Incredible Demos

  • By
    Duplicate the jQuery Homepage Tooltips

    The jQuery homepage has a pretty suave tooltip-like effect as seen below: The amount of jQuery required to duplicate this effect is next to nothing;  in fact, there's more CSS than there is jQuery code!  Let's explore how we can duplicate jQuery's tooltip effect. The HTML The overall...

  • By
    CSS Vertical Center with Flexbox

    I'm 31 years old and feel like I've been in the web development game for centuries.  We knew forever that layouts in CSS were a nightmare and we all considered flexbox our savior.  Whether it turns out that way remains to be seen but flexbox does easily...

Discussion

  1. Currently we use some specified classes for LTR sentences in RTL layout.

  2. Amir-abbas Abdolali

    I don’t see any problem in this case because in RTL languages you have to read words from right to the left so it is logical to see punctuation on the left side of the words.
    for example this text is in Persian which is right to left.

    این متن فارسی است!

    the exclamation mark is on the right side of the first word but if you change the direction of the box or add dir=”rtl” to the html tag (preferred option), the exclamation mark will go to the left side after the last word which is it’s correct position.

  3. If you are developing a bi-directional website you should always wrap sections of text with correct dir attribute. To avoid problems like this.

    If you are using Node in your back-end you can use my library that detects text direction and
    allow you to wrap text with right dir attribute. It’s also handy in front-end where user inputs the text and you render it in real-time.

    https://github.com/mohsen1/string-direction

  4. What HTML/CSS code exactly does produce those examples, i.e. how does one set RTL?

  5. omid khadem

    also there is problems for web fonts and layout of page.often you see tahoma font on wide number of rtl web sites,because other fonts didn’t designed for use in web.also almost all of frameworks (except foundation) don’t support rtl layouts.
    for the second problem i am developing a grid system for my own and i plan to release it on an open source license.

  6. Snir D

    Hi, I’m an Israeli developer and I had to deal with RTL in Hebrew alot.
    as mentioned here, the “dir” tag solves most of the problems.
    It actually even solve BiDi problems for when I have sentences combine RTL language with LTR languages.
    Yes, it’s not perfect and it has its problems but basically it works and we learned to deal with it.

  7. arieh

    aside from using the dir attribute, you also have the direction: rlt css rule – which does the same thing on the css level (not to be confused with text-align which just aligns text)

  8. Masoud Alimadadi

    Note that in above text comment, first lines are in bdi tag and second ones in p tag with css value of direction:rtl.

    In the first test, there is a br tag between English and Persian text.
    The second test doesn’t show good with direction:rtl and English text.
    The third text is similar with bidi and direction:rtl.

    In overall, bdi shows same result as direction:rtl on rtl text, is fine in ltr text while direction:rtl is not, and shows same issue as direction:rtl on multilingual text.

    I prefer bdi in future.

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!