Day 2: logical properties

posted on

It’s time to get me up to speed with modern CSS. There’s so much new in CSS that I know too little about. To change that I’ve started #100DaysOfMoreOrLessModernCSS. Why more or less modern CSS? Because some topics will be about cutting-edge features, while other stuff has been around for quite a while already, but I just have little to no experience with it.


Logical properties are a new way of working with directions and dimensions, one that allows you to control layout through logical, rather than physical mappings. This is especially useful, if you’re dealing with websites that are presented in different languages and writing modes, like right-to-left.

Physical properties

We're used to working with physical properties like margin-right, top, or border-left. In the following example, list items are positioned horizontally, and each item has a right margin.

HTML:

<ul>
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ul>

CSS:

li {
  background-color: #6befef;
  margin-right: 2rem;
}
  • One
  • Two
  • Three
The first item “One” is at the left edge of its parent element.

When you change the reading direction from right to left, you'd expect the first item to be positioned at the right edge of its parent, but it's not because physical properties don't change with the reading direction.

HTML:

<ul dir="rtl">
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ul>
  • One
  • Two
  • Three

Logical properties

Using logical properties, “One” is at the very right in right-to-left languages because logical properties don't work with the concept of top and bottom or left and right, but start and end, which switches depending on the writing mode.

HTML:

li {
  margin-inline-end: 2rem;
}
  • One
  • Two
  • Three

See on CodePen

Further reading

Do you want to learn even more awesome CSS?

I'm running a workshop with my friends at Smashing Magazine in which I introduce you to the most useful modern features in CSS and show how you can implement them today in your code base to improve scalability, maintainability, and productivity.

Learn more about the workshop!

Overview: 100 Days Of More Or Less Modern CSS