So I have an element in my html that I need to apply a special style for. I can target the elemnt with css but it gets overriden multible other places in css. How do I ensure that one style is applied instead of the other?
I tried using !important in my css, but it still won't work.
I am talking about
ul.M1 li.M3 {
font-size:13px;
}
but this one is not used instead this is used:
li.M3 {
font-size: 100px;
}
and it gets overriden a bunch of other places too.