1html {
2 font-size: 16px;
3}
4
5@media only screen and (max-width: 600) {
6 html {
7 font-size: 2.66vw; /* font-size=(16*100)/600; Onde 600 é a largura em px do protótipo*/
8 }
9
10 .div-exemplo {
11 width: 10rem;
12 height: 5rem;
13 }
14}
15