I'm developing a site using the MVC standard, I wonder if it's possible to use a different CSS in each view. If so, how?
I'm developing a site using the MVC standard, I wonder if it's possible to use a different CSS in each view. If so, how?
<link rel="stylesheet" media="screen and (max-width: 700px)" href="arquivo.css">
I'm not sure if that's what you're looking for, but that way CSS only loads if the width meets the given requirement.