我不明白为什么我们需要为 10px 的简化做这个:
html {
font-size: 62.5%; /* 62.5% of 16px = 10px */
}
下面的代码不应该做所有的工作吗?
const theme = createMuiTheme({
typography: {
// Tell Material-UI what's the font-size on the html element is.
htmlFontSize: 10,
},
});
先感谢您。