I want to write media query based on screen resolution. My screen resolution height is 768. I wrote media query for this as:
@media(min-height:768px) and (ma
Please try this:
@media only screen and (min-width: 768px) and (max-width: 850px) { }