I'm currently experimenting with the NOT operator in media queries
here's an example of what I'm trying to achieve:
.media{
@media screen and not (max-width: 600px){
display: flex;
flex-direction: row;
align-items: stretch;
}
}
Unfortunately, this code isn't functioning as expected. I'm encountering an error - any suggestions or insights would be greatly appreciated.