在自定义 css 里面添加下面的,比如我要改 H1 标签的标题内容 原始为 40px 在 782px 屏幕宽就显示 30px ,如下:
@media only screen and (max-width: 782px){
h1 {
font-size: 30px;
}
}
在 640px 屏幕宽就显示 20px ,如下:
@media only screen and (max-width: 640px){
h1 {
font-size: 30px;
}
}
可以按自己要求调整,h1 、 h2 、 3 、 4 、 5 、 6 、都可以。