I have a class called .nav ul li ul working before using @media screen, When I work on media screen I want to disable this class (Don't want css to read it anymore). Is there anyway to do this? Example
.nav ul li ul {
padding: 0;
position: relative;
top: 40px;
left: -30px;
width: 200px;
}
@media screen and (max-width: 600px) {
.nav ul li ul {
Do not do anything, Just ignore the original class
}
}
Please note that I still want to display this class But I don't want to give it any properties. Thanks