I have a new article out!
Super Simple Full-Bleed & Breakout Styles
frontendmasters.com/blog/super-s... - my take on an old problem using modern CSS solutions.
Using a spooky made up Halloween recipe to illustrate concepts.
PS @chriscoyier.net told me to be proud of it 😛
#CSS
31.10.2025 18:28 — 👍 62 🔁 12 💬 1 📌 0
No close quote?
There are multiple ways to do ornamental quotation marks.
I watched @kevinpowell.co go through “five super useful CSS properties that don’t get enough attention”, and his use of `open-quote` led to this piece about #CSS quotation marks and the depth counter:
cssence.com/2025/no-clos...
05.11.2025 12:21 — 👍 3 🔁 1 💬 0 📌 0
small details that matter 🧑🍳
use CSS pseudoelements to bridge the :hover gap w/ :has() + inset
a:has(+ .dots) a::after,
.dots + a::after {
position: absolute;
content: '';
}
a:has(+ .dots) a::after { inset: 0 -50% 0 100%; }
.dots + a::after { inset: 0 100% 0 -50%; }
22.10.2025 16:54 — 👍 49 🔁 6 💬 1 📌 0
Market research!
How often do you use one of those "what is my browser" websites (personally or sent to someone)?
Would you use one that isn't littered with ads or has a design from 1995? What features should it have?
What if you could also use it to collect info to emulate devices in Polypane?
22.10.2025 13:42 — 👍 1 🔁 4 💬 3 📌 1
They do the job. I guess they are laden with ads, but I’d have to ask my ad blocker.
BTW, you had me at “design from 1995”. 🙂
22.10.2025 14:33 — 👍 1 🔁 0 💬 1 📌 0
I sometimes use one of those "what is my screen resolution" sites, especially on mobile, to figure out device pixels and CSS pixels, does that count?
22.10.2025 14:14 — 👍 0 🔁 0 💬 1 📌 0
I remembered that the Basic theme on my blog handles everything just fine without any `box-sizing` declaration, so it’s `content-box` all the way. Maybe I’ll spend a couple of minutes to figure out how easy it would be to convert another theme of mine.
That aside, what’s your take on this?
22.10.2025 13:17 — 👍 0 🔁 0 💬 0 📌 0
YouTube video by Kevin Powell
It might be time to rethink box-sizing: border-box
But it doesn’t stop there, Pawel also added a YouTube video from @kevinpowell.co, who showcases that `border-box` may not always be your friend:
youtu.be/PtAcpV6TAGM
22.10.2025 13:16 — 👍 0 🔁 0 💬 1 📌 0
Don't Inherit the Box Model
It's time to stop spreading this out-dated practice
I’m fairly certain that you have already abandoned the old way of declaring `box-sizing: border-box` that includes inheritance, but in case you ask yourself why you should, it’s because @miriam.codes told you so:
www.oddbird.net/2025/09/04/b...
22.10.2025 13:16 — 👍 0 🔁 0 💬 1 📌 0
The CSS Reset, again | pawelgrzybek.com
Apparently you are not a real CSS dev if you don’t maintain your own CSS reset. Challenge accepted! Not a typical reset, but for sure a bunch of opinions.
Triple link alert!
I’m a sucker for #CSS resets, I will read any article on that subject. So sure enough I did read this one from @pawelgrzybek.com:
pawelgrzybek.com/the-css-rese...
However, I didn’t get that far, because what Pawel wrote about `box-sizing` got me thinking.
22.10.2025 13:15 — 👍 0 🔁 0 💬 1 📌 0
Instant snapport
How to tweak the optimal viewing region of the scrollport.
#CSS quick tip: How to tweak the optimal viewing region of the scrollport…
cssence.com/2025/scroll-...
16.10.2025 08:41 — 👍 1 🔁 1 💬 0 📌 0
Instant snapport
How to tweak the optimal viewing region of the scrollport.
#CSS quick tip: How to tweak the optimal viewing region of the scrollport…
cssence.com/2025/scroll-...
16.10.2025 08:41 — 👍 1 🔁 1 💬 0 📌 0
Container queries and CSS make it simple to smoothly transition an element to the other side of its parent container without knowing exact dimensions or distance.
Read more in my latest post: ryanmulligan.dev/blog/transit...
13.10.2025 13:25 — 👍 114 🔁 19 💬 5 📌 0
Color scheme switcher
HTML-only and beyond: Automatic, light, or dark color scheme.
Left as an exercise for the reader is to figure out how things get out of hand when you not only nest color schemes, but also throw my color scheme switcher on steroids from last year into the mix:
cssence.com/2024/color-s...
#CSS #WebDev
13.10.2025 09:26 — 👍 0 🔁 0 💬 0 📌 0
A tiny bit-o-CSS for Stable Scrollbar Gutters—zachleat.com
A post by Zach Leatherman (zachleat)
Tired:
`html { overflow-y: scroll; }`
Wired:
`html { scrollbar-gutter: stable; }`
Nice little #CSS gem from @zachleat.com.
www.zachleat.com/web/stable-s...
The feature detection is the cherry on top.
12.10.2025 17:30 — 👍 2 🔁 1 💬 0 📌 0
Nesting color schemes
This is indeed about having dark and light mode on the same page.
I could’ve written a simple article about the `color-scheme` property. I could’ve written a simple article about the `light-dark()` function.
But nooo.
I had to nerd out and write about nesting color schemes. 🙄
cssence.com/2025/nesting...
#CSS #WebDev #ColorScheme #LightDark
12.10.2025 06:09 — 👍 4 🔁 0 💬 1 📌 0
Messenger
It's a small planet, but someone's gotta make the deliveries.
It’s hard to imagine how this is even possible on the web, but it is, and we should celebrate that.
messenger.abeto.co
09.10.2025 15:03 — 👍 37 🔁 7 💬 0 📌 3
Oh hi 👋
thanks for the shout-out, Manuel.
I’m currently on what seems to be a blogging (and Bluesky, and Mastodon) hiatus, but more #CSS content should be coming soon. 🙂
08.10.2025 14:58 — 👍 2 🔁 0 💬 0 📌 0
CSS margin-trim and line height units | 12 Days of Web
Learn ways of perfecting design with line height units and margin-trim.
`text-box` was originally called `leading-trim`. Now it’s two longhand’s, `text-box-trim` and `text-box-edge` — or just use the `text-box` shorthand.
The `margin-trim` property is different, and it’s still the same as it was originally.
12daysofweb.dev/2024/css-mar...
23.08.2025 21:49 — 👍 20 🔁 3 💬 2 📌 1
💡 CSS Tip!
Create an infinite logo marquee using modern CSS and less than 10 lines of code.
css-tip.com/logo-marquee/
Where's the novelty, you might ask? It's responsive, works with any number of images, doesn't rely on magic numbers, and you can easily control it using CSS variables.
29.07.2025 11:03 — 👍 64 🔁 11 💬 3 📌 2
Should we remove XSLT from the web platform? #11523
github.com/whatwg/html/...
Weigh in with an emoji or more complex thoughts
04.08.2025 13:16 — 👍 17 🔁 5 💬 11 📌 3
new Date("wtf")
How well do you know JavaScript's Date class?
I made a quiz about the JS Date parser is. It's very easy and you will score very high.
jsdate.wtf
11.07.2025 17:10 — 👍 481 🔁 161 💬 64 📌 104
Animating emojis
The waiting is the hardest part.
It’s once again time for my annual Emoji animation. How those end up is always hit or miss, they can be either quite nice or just meh. This year’s works best if the emoji in question is in 2D and has no transparent areas. Yeah, big if.
cssence.com/2025/animati...
#CSS #Animation
01.07.2025 06:22 — 👍 0 🔁 0 💬 0 📌 0
Ondřej Konečný – Designer, Software Engineer
Ondřej Konečný's personal website.
The story of how the latest #CSS logo came to be:
"Kind of Rebeccapurple" www.ondrejkonecny.com/blog/kind-of...
I had missed this writeup. It's been great reading it to get a short history of how the logo evolved into what it came to be.
12.06.2025 09:04 — 👍 32 🔁 9 💬 5 📌 2
Screenshot of linked demo with subgrid elements not aligned to parent grid.
Help? 😟
Stupid #CSS #layout question: why isn't my subgrid respected?
codepen.io/thebabydino/...
30.06.2025 11:36 — 👍 2 🔁 1 💬 3 📌 0
Automatic repositioning logic! 🏗️
One really cool built-in feature of native customizable select:
22.04.2025 17:34 — 👍 63 🔁 5 💬 3 📌 1
Re: Design - Structure and semantics
URLs and HTML. The foundation of every website.
Today is #CSSNakedDay 🎉
On participating sites you’ll see how they are structured, and thus what comes first: Skip links, a banner, the navigation, or will you see the actual content with its heading level one right away? […]
cssence.com/2020/redesig...
Also, Happy Birthday to me.
09.04.2025 04:01 — 👍 2 🔁 0 💬 0 📌 0
👨🏾🎨 Front-End developer.
🩵 #CSS Sommelier
✈️ Traveller.
🛠️ Design System
nileshprajapati.com
I like to sing, compose, design and code. ♫ 👩🏼💻 🇨🇦
Cubase // HTML // CSS // JS // PHP // Accessibility
Builder of web-things. I want the #web to win.
Lead Frontend Developer at Geizhals Preisvergleich.
DIY woodworker.
#HTML – #CSS 🥰 – #JavaScript – #Svelte 🤩
https://grooovinger.com
📍Denmark 🏳️🌈 She/her 🌱 Desk setup 🖤 nerd stuff 🧷 CSS enthusiast.
Eat chaos. Be who you needed as a kid.
https://mournstera.dk
Studying digital service development.
In Finnish:
Viestintää, markkinointia, ohjelmistokehitystä, valokuvausta, graafista suunnittelua, ja ties mitä muuta opiskellut.
English and Finnish posts. Language filter in the Bluesky settings can be useful.
Accessibility Engineer | Speaker | UX Researcher | co-creator of https://a11yphant.com 🐘
passionate about creating inclusive, human-centred digital experiences ✨
https://dnikub.dev
Helping people to understand mobile and to build excellent experiences. Bringing the great cinema of MUBI to Apps and TVs. App Store Awards Winner 2023.
Web dev 'n stuff
https://github.com/mkrause
Sr. Front-end Engineer, Accessibility. Aggressive keyboard navigation tester. Fighter of bright ideas. Hater of delight. MMO gamer. Brooklyn. she/her. Opinions are my own.
Masto: https://hachyderm.io/@hbuchel
Web: https://heather-buchel.com
⌨️ web developer (#html #css #a11y #javascript #elixir)
📸 takes amateur photographs
🎲 board game geek
🇩🇪🇵🇱 an immigrant in Berlin
Web designers & developers - working on client web applications, open source tools, the CSS specifications, and front-end training:
- OddBird.dev
- css.OddBird.net
- youtube.com/@WingingItOddBird
UI Developer | HTML, CSS, Javascript, Accessibility & Web Standards
🇳🇿 Aotearoa New Zealand
She/her. Web developer. A house with seven rescue animals. Book lover.
Illustration + Photography + Web Design
I was young, I needed the work.
https://pablolarah.cl
https://pablolarah.blogspot.com
https://pablolarah.tumblr.com
https://www.behance.net/pablolarah
UI-Designer, using Code to create in CSS, SVG and JS. Technology enthusiast, fan of Smart Home, Humanist and dweller in the marvelous city of Cologne.
Webdev, Design, UX, Illustration, 3D, cycling and about 2435 other hobbies as a person.
https://leifs.website/
🤯 Dad³.
💻 #PHP / #WordPress / #Laravel / #JavaScript / #CSS
🧠 Running https://wpcharitable.com
Sharing what I 🧡 about tech + web. Cool tips, tools.
Posts + bad jokes are my own.
👉🏻 https://davidbisset.social
👉🏻 https://davidbisset.com
web platform staff engineer at Volvo Cars. design systems, developer experience and scaling web teams. falling back in love with css.
Designer. Engineer. Web stuff @apple.
On a journey to architect the self.