specificity
by nabendu
HTML
<div class="name" id="namdId">Nabendu</div>
CSS
div{
background: yellow !important;
}
div.name{
background: green;
}
div#namdId{
background: red;
}
by nabendu
<div class="name" id="namdId">Nabendu</div>
div{
background: yellow !important;
}
div.name{
background: green;
}
div#namdId{
background: red;
}