<span id="topaccount" style="font-size:3rem;color:red;">NANA</span> <span>
这是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>
时间: 2024-12-18 12:50:52