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
.
ul {
display: flex;
list-style: none;
padding: 0.5rem 0;
}
li {
background-color: #6befef;
margin-right: 2rem;
}
<h3>left to right</h3>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
<h3>right to left</h3>
<ul dir="rtl">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
In right-to-left languages “One” should be positioned at the very right, but it's not because with physical properties every list item has its margin always on the right, no matter the reading direction.
- One
- Two
- Three
- 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 may switch depending on the writing mode.
- One
- Two
- Three
- One
- Two
- Three
li {
margin-inline-end: 2rem;
}
<h3>left to right</h3>
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
<h3>right to left</h3>
<ul dir="rtl">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
Further reading
- RTL Styling 101
- Day 3: logical property shorthands
- Day 31: logical border properties
- Day 44: logical floating and clearing
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.