4 categories we look at when we’re determining the overall lvl of importance of a CSS rule
Position > specificity > type > inheritance
Position
li { color: blue; color: red;}
red will be applied at the final
the lower down in a CSS external file or in an internal style element
Specificity
<li id="first-id" class="first-class" draggable>/* (style.css) the lower, the more specific */li {color:blue;} /* element */.first-class {color:red} /* class */li[draggable] {color: purple;} /* attribute*/#first-id {color: orange;} /* id */