Morning all,
Wondering your thoughts on the speed of using different stylesheets for different sized viewports.
Doing this:
rel=”stylesheet” media=”screen and (min-device-width: 800px)” href=”800.css”
Does this dramatically improve speed? Is there a slight lag when the browser loads in different .css files?
Also Im wondering if this is possible with .scss files, for example:
@import ‘mobile’; when screen is below 700px
Is this remotely possible, or would I have to export each file as a stylesheet ?
Many thanks in advance.