Home › Forums › CSS › CSS media queries not working as I planned › Reply To: CSS media queries not working as I planned
March 19, 2014 at 10:00 am
#166270
Member
Take this
@media only screen and (max-width: 1024px)
and make it
@media only screen and (min-width: 481px)
or
@media only screen and (min-width: 481px) and (max-width: 1024px)