Presenting about the 3 pillars of CSS architecture at Front in Sampa 2024 gave me the opportunity to read a lot about CSS from a theoretical point of view, which I feel gave me a more mature, holistic and strategic view of CSS development at scale.
On this tour I discovered points of view about CSS that, in addition to rekindling my curiosity, left me excited to make new decisions with these new views of the world.
Cyclomatic complexity is a metric of a program's complexity - each flow control and each output increases the complexity of a method, class or application.
In CSS, complexity can mean slow, poorly reusable and overly specific selectors.
div.sidebar .login-box a.btn span {} /* Pode ser lido como IF (inside .btn) AND IF (on a) AND IF (inside .login-box) AND IF (inside .sidebar) AND IF (on div) */
"Think of your selectors as mini programs"
Link to the article on the CSSWizardry blog, in English
Still about the value of seeing CSS as a language with logical operations, not just talking about media queries that make logical evaluations to make code available according to context conditions, but every interactive state, the presence or not of a next selector, from a selector index, or from the presence of a specific child (with :has).
It is an article that is extremely current with the new properties and the paradigm shift caused by :has, container queries and the already existing but not so explored support queries.
Link to the article on Ahmad Shadeed's blog, in English
Cascade Stylesheets, and yet it is very common to see CSS errors that involve the way and order in which the CSS is written. In this beautiful blog post by Amelia Wattenberger, in a simple and visual way, she demonstrates how the waterfall works and provides insights into how to think about your CSS with it in mind.
Link to the article on Amelia Wattenberger's blog, in English
The more I needed to use CSS-in-JS, the more its negative points bothered me, such as bundle size, runtime changes and a confusing reuse versus co-location architecture. With CSS variables it becomes even more obsolete to prefer arrow function versus injecting variables via styles - it's much simpler and CSS handles this type of scope well.
It is in this article that we understand why and how it exists, with incredible links mentioned throughout.
Link to the article on medium, in English
CSS is the biggest offender in slow web loading, unused and excessive CSS, selectors and operations that in interaction affect more nodes than they should, even complex and slow selectors that would require less overhead and more architecture.
In this article you will understand how the browser works in loading, compiling and prioritizing this critical asset and how to make the path to it less painful for the end user.
Link to the article on Stoyan Stefanov's blog, in English
After reading, watch this video by Harry Roberts about CSS performance on Frontend United
Ethan Marcotte coined the term "responsiveness" based on architectural assemblies that in a certain way responded to the occupation of their space, this glimpse inspired by John Alsopp's text in the year 200 that called for a freer Web that dictated fewer rules to users in a world with a growing number of devices has changed the way we write interfaces and will change the way you see them too.
Link to the article on the A List Apart blog, in English
After reading, watch this video by Jen Simmons with a modern look at responsiveness - intrinsic layouts
To close
I met Jake watching HTTP 203 on the Google channel and have been following his blog ever since. In this article he explores the possibility of including links in the folds of
to progressively load the styles of what is below the "fold".Didn't know it was possible? Yeah, TIL too!
Link to the article on Jake's blog, in English
After reading, watch the HTTP 203 show on the Chrome for Developers channel, I learn a lot from Jake and his guests
The above is the detailed content of Articles about CSS that blew my head in 4. For more information, please follow other related articles on the PHP Chinese website!