DEV Community

Darius Grigorjevas
Darius Grigorjevas

Posted on

Your favorite underrated CSS properties

We all know that CSS has many underrated properties that tend to be forgotten over time, despite being useful. For example, clip, font-stretch, or text-shadow are a few of my favorite properties that are used less.

Also, I would like to mention scroll appearance properties. Even though being only a small detail, a nice scrollbar can positively enhance the overall look of your web application!

What are some of your favorite not so popular CSS properties?

Top comments (3)

Collapse
 
binyamin profile image
Binyamin Green • Edited
html {
  scroll-behavior: "smooth";
}

mdn. Not so good on global browser support (~75%), but it's instant smooth-scrolling for most people.

Some comments may only be visible to logged-in visitors. Sign in to view all comments.