I have a video background and since it takes quite a lot of MB to load that, I want to disable the video on smartphones. The CSS itself is easy:
video{
display:none;
}
But, how to get the media query so that it won't affect desktop and laptop screens? Because smartphones are getting higher and higher resolutions and the old method of just targeting a smaller amount of pixels (±450px e.g.) won't work with newer smartphones anymore. The width and height of the smartphone shouldn't matter, I fixed that in my 'regular' media queries, so that the css changes when my design breaks.