Are inline styles faster than atomic CSS?
April 02, 2018

First, a couple of definitions. In this article, I’m using inline styles to mean styles applied directly to the attribute of a HTML element. Atomic CSS is a styling strategy resulting in the total atomisation of CSS classes. A CSS class may contain no more than one CSS rule. To apply a particular style rule to an element, the developer must add the appropriate class. Atomisation may be…