Supporting logical properties

I wrote recently about making the switch to logical properties over on The Session.

Initially I tried ripping the band-aid off and swapping out all the directional properties for logical properties. After all, support for logical properties is green…

I wrote recently about making the switch to logical properties over on The Session.

Initially I tried ripping the band-aid off and swapping out all the directional properties for logical properties. After all, support for logical properties is green across the board.

But then I got some reports of people seeing formating issues. These people were using Safari on devices that could no longer update their operating system. Because versions of Safari are tied to versions of the operating system, there was nothing they could do other than switch to using a different browser.

I’ve said it before and I’ll say it again, but as long as this situation continues, Safari is not an evergreen browser. (I also understand that problem lies with the OS architecture—it must be incredibly frustrating for the folks working on WebKit and/or Safari.)

So I needed to add fallbacks for older browsers that don’t support logical properties. Or, to put it another way, I needed to add logical properties as a progressive enhancement.

“No problem!” I thought. “The way that CSS works, I can just put the logical version right after the directional version.”

element {
  margin-left: 1em;
  margin-inline-start: 1em;
}

But that’s not true in this case. I’m not over-riding a value, I’m setting two different properties.

In a left-to-right language like English it’s true that margin-inline-start will over-ride margin-left. But in a right-to-left language, I’ve just set margin-left and margin-inline-start (which happens to be on the right).

This is a job for @supports!

element {
  margin-left: 1em;
}
@supports (margin-inline-start: 1em) {
  element {
    margin-left: unset;
    margin-inline-start: 1em;
  }
}

I’m doing two things inside the @supports block. I’m applying the logical property I’ve just tested for. I’m also undoing the previously declared directional property.

A value of unset is perfect for this:

The unset CSS keyword resets a property to its inherited value if the property naturally inherits from its parent, and to its initial value if not. In other words, it behaves like the inherit keyword in the first case, when the property is an inherited property, and like the initial keyword in the second case, when the property is a non-inherited property.

Now I’ve got three CSS features working very nicely together:

  1. @supports (also known as feature queries),
  2. logical properties, and
  3. the unset keyword.

For anyone using an up-to-date browser, none of this will make any difference. But for anyone who can’t update their Safari browser because they can’t update their operating system, because they don’t want to throw out their perfectly functional Apple device, they’ll continue to get the older directional properties:

I discovered that my Mom’s iPad was a 1st generation iPad Air. Apple stopped supporting that device in iOS 12, which means it was stuck with whatever version of Safari last shipped with iOS 12.


Print Share Comment Cite Upload Translate
APA
Adactio: Journal | Sciencx (2024-03-29T15:27:05+00:00) » Supporting logical properties. Retrieved from https://www.scien.cx/2022/09/30/supporting-logical-properties/.
MLA
" » Supporting logical properties." Adactio: Journal | Sciencx - Friday September 30, 2022, https://www.scien.cx/2022/09/30/supporting-logical-properties/
HARVARD
Adactio: Journal | Sciencx Friday September 30, 2022 » Supporting logical properties., viewed 2024-03-29T15:27:05+00:00,<https://www.scien.cx/2022/09/30/supporting-logical-properties/>
VANCOUVER
Adactio: Journal | Sciencx - » Supporting logical properties. [Internet]. [Accessed 2024-03-29T15:27:05+00:00]. Available from: https://www.scien.cx/2022/09/30/supporting-logical-properties/
CHICAGO
" » Supporting logical properties." Adactio: Journal | Sciencx - Accessed 2024-03-29T15:27:05+00:00. https://www.scien.cx/2022/09/30/supporting-logical-properties/
IEEE
" » Supporting logical properties." Adactio: Journal | Sciencx [Online]. Available: https://www.scien.cx/2022/09/30/supporting-logical-properties/. [Accessed: 2024-03-29T15:27:05+00:00]
rf:citation
» Supporting logical properties | Adactio: Journal | Sciencx | https://www.scien.cx/2022/09/30/supporting-logical-properties/ | 2024-03-29T15:27:05+00:00
https://github.com/addpipe/simple-recorderjs-demo