Blog

Modern CSS Tips

February 18, 2026

Here's a nice collection of modern CSS snippets to replace older techniques. 

Utopia Font Scaling

November 13, 2024

An elegant way to scale fonts and spacing for responsive designs. A generated example with 8 scales 

https://utopia.fyi/type/calculator

Flexbox text wrapping

May 15, 2024

A super flexy way to wrap button text when a row has multiple buttons/options. 

No more containers

November 10, 2023

Tired of using containers and wrapper divs? Struggling with how to breakout sections that need to go wider than the container width? This video is 💰💰💰

If Vanna White becomes AI ...

October 31, 2023

A modern "twist" on a Solari board using AlpineJs and Css. 

Gradient Borders Exploded

October 23, 2023

This was really cool demo on CSS gradient borders but the eye catcher is the 3d exploding layers. 2 🔥 tips for the price 1.

Tabular Numbers

October 23, 2023

If you're animating numbers, use this line of CSS

.numbers {
   font-variant: tabular-nums;
}

It will make sure your numbers don't jump around like this 👍

Gradient Border Effect

October 23, 2023

Really cool CSS gradient border effect I recreated after seeing it on the warp website. Props to Wes Bos for this one.

Demo: https://htmlpreview.github.io/?https://raw.githubusercontent.com/wesbos/hot-tips/main/warp-card.html…

Code: https://github.com/wesbos/hot-tips/blob/main/warp-card.html

CSS Pie Chart

October 22, 2023

With a few simple lines of CSS you can create a beautiful 🥧 chart 

background:conic-gradient(
   #a78bfa 0deg 45deg,
   #fb923c 45deg 90deg,
   #a3e635 90deg 225deg,
   #22d3ee 225deg 0deg
);