What is the best way to use Media Queries

2

What is the best way to use Media Queries to responsive max-width: or min-width:

    
asked by anonymous 23.03.2016 / 17:48

1 answer

4

Actually, both ways are correct. there are no performance differences or anything else, they are just different filters.

There are both, so if you want to apply css within a range, you can use them like this: min-width: 500px and max-width: 800px

    
23.03.2016 / 18:38