zhouwx
2025-06-16 bdd99a4f6edb84d8eebe6afc38c2c2f86fb4a52c
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;}
}