马宇豪
2025-05-08 1289c40801a6f0da5ba786fb4a9e8203e3e2620a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
html{font-size:12px; font-size:62.5%; /* 10÷16=62.5% */}
@media screen and (max-width: 1920px) {
    html { font-size: 100%;}
}
@media screen and (max-width: 1336px) {
    html { font-size: 80%;}
}
@media screen and (max-width: 1200px) {
    html { font-size: 62.5%;}
}
@media screen and (max-width: 1000px) {
    html { font-size: 10px;}
}
@media screen and (max-width: 800px) {
    html { font-size: 8px;}
}
@media screen and (max-width: 700px) {
    html { font-size: 7px;}
}
@media screen and (max-width: 600px) {
    html { font-size: 6px;}
}