欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

媒体查询正确使用方法

程序员文章站 2022-05-11 08:05:42
...

媒体查询正确使用方法

在这里插入代码片

@media screen and (max-width: 1600px) {
html{font-size: 60px;}
.home-title{
font-size: 3.4rem;
}
}
@media screen and (max-width: 1200px) {
html{font-size: 30px;}
.home-title{
font-size: 3rem;
}
}
@media screen and (max-width: 800px) {
html{font-size: 16px;}
.home-title{
font-size: 2rem;
}
}
@media screen and (max-width: 600px) {
html{font-size: 12px;}
.home-title{
font-size: 1.6rem;
}
}

相关标签: html5