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
Post a Comment