I made the entire website using rem units due to utilizing the bootstrap 4 alpha version. Now, I am ready to begin the responsive design of the site.
My html {font-size: 16px}
declaration is set, so I am wondering if I can adjust the size of html
in the media queries. For example:
/****responsive css***/
@media only screen and (max-width: 1280px) {
html{
font-size: 15px;
}
}
@media only screen and (max-width: 1199px) {
html{
font-size: 14px;
}
}
I am seeking clarification on whether there are any issues with this approach or if it can be implemented without any problems.