Subscribe

CSS Writing Mode

โœ๏ธ

Lets explore the CSS Writing Mode property today

9 Jul, 2020 ยท 2 min read

The other day I came across the CSS writing-mode property and must admit Iโ€™ve never used it, so I decided to see what we can do with it.

Itโ€™s a fantastic property that tells us how text should flow, horizontal or vertical.

HTML Structure

We are testing the three values we can use and a default benchmark text:

<p>This text is your basic paragraph and flows naturally</p>
<p class="vertical-rl">This text goes Vertical from Right to Left</p>
<p class="vertical-lr">This text goes Vertical from Left to Right</p>
<p class="horizontal-tb">This text goes Horizontal from Top to Bottom</p>

CSS Writing Mode

As mentioned, CSS writing-mode can be used to define how a text should flow.

It comes with three possible options:

  • vertical-rl: Goes Vertical from Right to Left
  • vertical-lr: Goes Vertical from Left to Right
  • horizontal-tb: Goes Horizontal from Top to Bottom (Default)

The horizontal is the default and the standard value.

.vertical-rl {
  writing-mode: vertical-rl;
}
.vertical-lr {
  writing-mode: vertical-lr;
}
.horizontal-tb {
  writing-mode: horizontal-tb;
}

This results in the following Codepen.

See the Pen wvMjvKL by Chris Bongers (@rebelchris) on CodePen.

Browser Support

Writing mode comes with relatively good support. Itโ€™s missing some IE features and Opera Mini (as many cool features).

CSS Writing Mode support

Thank you for reading, and letโ€™s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next ๐Ÿ“–

Modifying an SVG path with CSS

10 Dec, 2022 ยท 2 min read

Modifying an SVG path with CSS

Animate an SVG path with CSS

9 Dec, 2022 ยท 2 min read

Animate an SVG path with CSS

Join 2099 devs and subscribe to my newsletter