specificity

by nabendu

HTML

<div class="name" id="namdId">Nabendu</div>

CSS

div{
 background: yellow !important;  
}

div.name{
  background: green;
}

div#namdId{
  background: red;
}