再做移动端开发时发现字体大小比较小;但是怎么设置都没有效果;请问怎么更改默认字体大小
1、在你的html文件里面加上<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
2、css文件设置body{font-size:16px;}
加 important试试
html {
font-size : 20px;
}
@media only screen and (min-width: 401px){
html {
font-size: 25px !important;
}
}
@media only screen and (min-width: 428px){
html {
font-size: 26.75px !important;
}
}
@media only screen and (min-width: 481px){
html {
font-size: 30px !important;
}
}
@media only screen and (min-width: 569px){
html {
font-size: 35px !important;
}
}
@media only screen and (min-width: 641px){
html {
font-size: 40px !important;
}
}
10 回答11.7k 阅读
2 回答3.2k 阅读✓ 已解决
5 回答2.2k 阅读
3 回答1.7k 阅读✓ 已解决
5 回答788 阅读
4 回答2.2k 阅读✓ 已解决
3 回答1.2k 阅读✓ 已解决
注意这几个问题:
1、
2、