html - 2 specific media queries -


is possible use 2 media queries , between screen size there should edit. let's want use margin:5px; between screen size 700px , 500px. know can start @media (max-width: 700px) {margin:5px;} , use @media (min-width: 500px) {margin:0px;} after, but.

my question is, there code shortens this?

note: give idea of mean: @media (min-width: 700px between 500px){margin:0px;}

@media (min-width: 500px) , (max-width: 700px) 

Comments