I have two doubts here with responsive design.
The first is in relation to the following code:
<link rel="stylesheet" media="only screen and(min=width: 1366px)"
href="css/deskmax.css" />
Because when I create CSS so it does not open in the browser?
deskmax.css file
@media screen and (min-width: 1366px) and (max-width: 1920px) {
conteúdo css do site
}
I do everything else only works if I take the @media screen
of code with link; I need to leave in css without @media
or can I leave anyway?
Second question with CSS in @media
for responsive design is, do I create css only within @media querys
or do I have to create it before everything, without @media
and then within @media
to readjust?