Exploring responsive layouts is a new adventure for me. Most things seem to be falling into place, except for one challenge: I am struggling to show divs with the property 'display: none;'
when switching it to 'display: block;'
in my media query.
#test {
display: none;
}
@media screen and (max-width:320px) {
#test {
display: block;
}
}
Could jQuery be the solution to this problem?