How to override a CSS reset?

I’m working on a simple project and I’ve reset the CSS using a ready-to-use document from this guy: CSS Tools: Reset CSS

I want to add some specific properties and values to the h3’s texts. But when I do (example):

h3 {
 property: value;
}

it simply does not change anything. The Devtools from Chrome tells me it is overridden by the CSS reset.

How can I apply a property then to all my h3’s? I thought of course on using classes, but as there are many h3’s, that becomes not convenient.

Have you added the reset styles before or after your own custom styles? The CSS reset always comes first in your stylesheet, then everything else.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.