I have a rookie problem with some CSS media queries. You see, I already have the <meta name="viewport" content="width=device-width, initial-scale=1">
tag in my header. However, when I run the media query...
@media screen and (min-width: 800px) and (max-width: 1281px){
body{
display: none;
}
}
It doesn't quite work the way it's supposed to. I am working in a Mac Pro 13 and the query actually executes from 640px to 1025px.
I have no idea what I'm doing wrong but I'm sure it's a rookie mistake. If anyone could help me it would be greatly appreciated.