4
I have a responsive website only the lyrics even putting in %, Rem or EM is not adjusting.
Then it is possible to make the font change for example a window with the length in 1000px and font-size in 1.8em (18px), up the window length to 2000px then the font-size rises to the equivalent something like 36px?
I want the font to adjust its value as the window or grid dimensions change.
A very interesting text to complement the concepts: http://blog.popupdesign.com.br/design-responsivo-grids-e-text/
– Delfino
Just on this site we found an example, I’ve tried more does not match the text in the popupdesign menu; in the popup when the browser height the font, note this carefully in maximizing and minimizing. @Delfino
– Eder
possible duplicate of Font-size for responsive pages
– Delfino
In case I have to Set a font-size for each resolution?
@media only screen and (max-width: 1000px) { 
 body { font-size: 1.8rem; } 
}
@media only screen and (max-width: 2000px) { 
 body { font-size: 3.6rem; }
}

I could check this on popupdesigner @Delfino @Fabio Mingorance– Eder