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
//simple max-width query @media screen and ( min-height: 600px ){ background: blue; .... }
This might help you.