Use different CSS in each view

0

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?

    
asked by anonymous 06.01.2018 / 11:20

1 answer

0
<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.

    
23.01.2018 / 23:15