Media Query CSS important -


making responsive website,

i wrote this, doesn't work.

@media (max-width: 767px) {     #nav { display:block; } } 

but, wrote this, works!

@media (max-width: 767px) {     #nav { display:block !important; } } 

why? :(

check css code , higher specificity changing #nav element.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -