×

Search anything:

CSS writing-mode explained

Binary Tree book by OpenGenus

Open-Source Internship opportunity by OpenGenus for programmers. Apply now.

In this article at OpenGenus, we will discuss the CSS property 'writing-mode' and where we can use it.

Table of contents:

  1. Introduction
  2. Need of writing-mode
  3. Values of writing-mode property
  4. Example with code
  5. Conclusion

Introduction

The writing-mode property is like a secret language for web developers. It helps them decide how text should look on a web page. You know how some books are read from left to right, while others are read from top to bottom? Well, this property lets web developer control that.

It's like a magic trick to make text go in different directions, whether horizontal like English, vertical like in Japanese, or even sideways. It's not something everyone uses, but when they do, it can make a website look really cool and work better for different languages.

Need of writing-mode

We live in a wide, diverse world. Just as there are many languages spoken around the world, there are also various ways of writing those languages. Let's see how many writing system are there generally

  1. Latin based system :

This writing system dominates the world more than any other writing system out there reportedly covering about 70% of world population. The text is horizontally running from left to right (LTR) and vertically up to down.

latin-wrting-pattern french

Example of such texts are English, German, French.

  1. Arabic based system :

This language run the inline direction from right to left. This is commonly known as RTL. Remember that inline direction still run horizontally. The block direction run from top to bottom.

Arabic-Based-System arabic1

For example - Arabic, Hebrew and other languages.

  1. Han-based system :

Han-based writing system is used in CJK languages, Japanese, Korean, Chinese.
There are two options in this writing system, and sometimes both are used.
one format is like Latin based system where it's written from left to right, and the second format laid out in vertical writing mode where the inline direction runs vertically and block direction goes from right to left.

See the diagram:

HAN-based-system korean japanese-horizontal
  1. Mongolian based system :

Mongolian is also a vertically written language just like Han-based systems but in inline direction it flows from top to bottom in and the block direction it flows from left to right.

Check the diagram:

Mongolian-based-system Mongol

Given the diversity of writing systems and text layouts worldwide, we require a CSS property to adapt to these variations and document orientations. This is where the introduction of the 'writing-mode' property comes into play.

Values of writing-mode property

  1. horizontal-tb: For LTR scripts, content flows horizontally from left to right. For RTL scripts, content flows horizontally from right to left. The next horizontal line is positioned below the previous line..

  2. vertical-rl: For LTR scripts, content flows vertically from top to bottom, and the next vertical line is positioned to the left of the previous line. For RTL scripts, content flows vertically from bottom to top, and the next vertical line is positioned to the right of the previous line.

  3. vertical-lr: For LTR scripts, content flows vertically from top to bottom, and the next vertical line is positioned to the right of the previous line. For RTL scripts, content flows vertically from bottom to top, and the next vertical line is positioned to the left of the previous line.

  4. sideways-rl: For LTR scripts, content flows vertically from top to bottom. For RTL scripts, content flows vertically from bottom to top. All the glyphs, even those in vertical scripts, are set sideways toward the right.

  5. sideways-lr: For LTR scripts, content flows vertically from bottom to top. For RTL scripts, content flows vertically from top to bottom. All the glyphs, even those in vertical scripts, are set sideways toward the left.

These alternative descriptions provide concise explanations of each writing-mode property value.

Example with code

  1. horizontal-tb: This example is for Latin-based system.
  • HTML:
    Html

  • CSS:
    css-hr-tab

  • Output:
    css-hr-tab

  1. horizontal-tb: This example for Arabic based system, that means content will flow from right to left and from top to bottom.
  • HTML:
    Html

  • CSS:
    css-hr-rtl

  • Output:
    html-hr-rtl-1

  1. vertical-rl: This is for Han-based system where content flows vertically and from right to left.
  • HTML:
    Html

  • CSS:
    css-vr-rtl

  • Output:
    otpt-vr-rtl

  1. vertical-lr: This is for Mongolian based system. the language is written vertically from left to right.
  • HTML:
    Html

  • CSS:
    css-vr-lr

  • Output:
    otpt-vr-lr

  1. sideways-lr:
  • HTML:
    Html

  • CSS:
    css-sd-lr

  • Output:
    otpt-sd-lr1

  1. sideways-rl:
  • HTML:
    new-Html

  • CSS:
    css-sd-rl

  • Output:
    otpt-vr-lr

Conclusion

The writing-mode property in CSS is a powerful tool that allows web developers to control how text and content are arranged on a webpage. It defines whether text flows horizontally, like we usually read in English, or vertically, which is common in some Asian languages.

It's not something every developer uses, but it's essential for accommodating different languages and scripts. For example, you might want vertical text for a Japanese website or artistic layouts that break the norm.

The good news is that most modern web browsers, including Microsoft Edge, support this property. It's a useful tool in the web designer's toolbox, especially when dealing with diverse content layouts and international audiences.

CSS writing-mode explained
Share this