CSS设置文字大小自适应功能

<span id="topaccount" style="font-size:3rem;color:red;">NANA</span>&nbsp;<span>

CSS设置文字大小自适应功能CSS设置文字大小自适应功能

这是html的某一个页面的span里面的东西

我想让它自适应显示设备儿变大变小font-size:3rem

1rem=16px

然后 我只要设置html的属性,然后具体哪个标签要固定死就让他为固定的值。其他的值为3rem的百分比

<style>

@media screen and (max-width:1255px){

    html{font-size:85%;}

}

@media screen and (max-width:1280px){

    html{font-size:75%;}

}

@media screen and (max-width:768px){

    html{font-size:50%;}

}

@media screen and (max-width:640px){

    html{font-size:45%;}

}

@media screen and (max-width:480px){

    html{font-size:35%;}

}

@media screen and (max-width:320px){

    html{font-size:20%;}

}

</style>

你可能感兴趣的:(css)