3 回答
TA贡献1843条经验 获得超7个赞
移动端页面添加上下面的meta
<meta name="viewport" content="width=device-width, initial-scale=1" />
如果要禁止用户的缩放,请自行查询文档后添加
然后尽量不要使用px作为单位,除了border-width, outline-width, border-radius等只需要微量单位的属性外,多使用em, %, rem做单位, 尤其是字体。这种处理是不需要媒体查询的,真正用到媒体查询的东西不会太多的,主要是在布局上可能会有些媒体查询的东西存在。
TA贡献1803条经验 获得超6个赞
媒体查询配合rem
使用。
@media only screen and (min-width: 340px){
html {
font-size: 20px !important;
}
}
@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;
}
}
然后html
里面的DOM
根据html
来设定大小,宽度,高度。
- 3 回答
- 0 关注
- 1160 浏览
添加回答
举报