DEV Community

David Sima
David Sima

Posted on

3 1

How do you start your css file?

I usually start like this:

*:not(ul):not(ol) {
  margin: 0;
  padding: 0;
}

It reverts most of the browser specific styles that I care of in the beginning preserving lists markers.

Top comments (1)

Collapse
 
cecilelebleu profile image
Cécile Lebleu

Interesting snippet! I’ll probably use it 😁
I usually start by defining global color variables, and also * {margin: 0}

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay