Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
<div class="box">我是测试字体大小</div>
<style>
html{
font-size: 100px;
font-size: calc(100vw / 3.75);
}
body{
font-size: 0.2rem;
}
@media (max-width:375px){
html{
font-size:100px;
}
}
@media (min-width:470px){
html{
font-size:110px;
}
}
</style>
设置默认字号为20的时候,进行了一次计算。