This is a neat CSS technique: Axiomatic CSS and Lobotomized Owls.
Tag Archives: css
CSS position attribute
Today via r/programming: CSS Position: Locate Your HTML Elements Like a Guru.
CSS notes and games
This via r/programming today: What I Wish I Knew About CSS When Starting Out As A Frontender.
Also check out Flexbox Froggy and Grid Garden.
CSS spacing
This via r/programming today: CSS: The Spacing Between Elements Should Be Determined by the Parent Element.
CSS Tips
This on r/programming today: CSS Tips. There are a lot of good tricks in there, this one was my fav:
.center {
display: flex;
align-items: center;
justify-content: center;
}
…it centres content vertically and horizontally.
Tools for Auditing CSS
Some good tools and techniques listed over one Tools for Auditing CSS.
Font size is useless; let’s fix it
This on r/programming today: Font size is useless; let’s fix it. Interesting article, but I didn’t read it closely.
Charts.css
Kickass: Charts.css. Also of interest: Which color scale to use when visualizing data.
CSS property usage
This popped up on lobsters today: Chrome Platform Status: CSS usage. It’s a report on the prevalence of CSS properties as found in the wild. It’s interesting. I was surprised by some things. e.g. ‘display’ and ‘position’ are more prevalent than ‘padding’ and ‘margin’.
The Complete CSS Grid Tutorial
The Complete CSS Grid Tutorial. Say no more.