pc端rem配置
# pc端rem配置
html {
/**
rem em
em 相对于父元素的font-size
rem 相对于根元素html的font-size,r就是root的意思
16 * 62.5% = 10px
1rem === 10px
*/
font-size: 62.5%;
}
html body #root .App {
/*希望这4个元素能撑满视口*/
min-height: 100vh;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
上次更新: 3/2/2022, 6:42:33 PM