I have an application where styles are defined as
select {
border: 1px solid #6FA7D1;
outline:0;
height:25px;
padding-left: 5px;
font-family:Arial;
font-size:12px;
transition: all 0.8s;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
}
so, every <select></select>
will get the same style, which is expected, but, I'm using some third party plugins like jqGrid and I don't want to apply same style on for instance <select>
rendered in jqGrid pager. This <select>
has some class.
Is there some way to tell in CSS not to apply on DOM with certain class?
Please don't focus strictly on this <select>
in jqGrid, I have more situations when I can use such exclusion.