If I use this code
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" media="screen and (orientation: portrait) and (max-width:640px), projection" "href=»style.css" /> <link rel="stylesheet" media="screen and (orientation: portrait) and (max-width:1024px), projection" "href=»style.css" /> <link rel="stylesheet" media="screen and (orientation: portrait) and (min-width:1280px), projection" "href=»style.css" /> Will the browser download all CSS files or just under the necessary resolution?
If yes, then tell me the solution, I will be very grateful
@media screen and ( ){/*style*/}- user33274