'MEDIA QUERY For orientation: landscape but not desktop. how?

Here it will not contain it on the tablet because I am testing a tablet with a mouse on my computer:

@media (max-width: 1024px), (not: pointer) and (orientation: landscape)

And here it will also contain a desktop.

@media (max-width: 1024px), (orientation: landscape) 

so How can I solve it ? Thanks



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source