media queries

i have a question about media queries. For this code
@media (min-width: 768px) and (max-width: 1200px) {
    .logo {
        height: 90px;
        width: 90px;
        margin-left: 75px;
    }
}


is this even correct? Should the pixel values not be between 768 and 1200? or is it like 0 starts from 768 an 90px is just at 858 type of thing? or am i completely misunderstanding this?
Was this page helpful?