200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > html 媒体查询改变字体 CSS----媒体查询设置根节点字体大小

html 媒体查询改变字体 CSS----媒体查询设置根节点字体大小

时间:2021-01-01 04:13:33

相关推荐

html 媒体查询改变字体 CSS----媒体查询设置根节点字体大小

CSS----媒体查询设置根节点字体大小

/* 字体大小 */

@media only screen and (min-width:320px) and (orientation:portrait) {

html {

font-size: 12px;

}

}

@media only screen and (min-width:360px) and (orientation:portrait) {

html {

font-size: 15px;

}

}

@media only screen and (min-width:400px) and (orientation:portrait) {

html {

font-size: 18px;

}

}

@media only screen and (min-width:600px) and (orientation:portrait) {

html {

font-size: 24px;

}

}

@media only screen and (max-width:768px) and (orientation:portrait) {}

@media only screen and (min-width:480px) and (orientation:landscape) {

html {

font-size: 12px;

}

}

@media only screen and (min-width:580px) and (orientation:landscape) {

html {

font-size: 13px;

}

}

@media only screen and (min-width:730px) and (orientation:landscape) {

html {

font-size: 16px;

}

}

@media only screen and (min-width:900px) and (orientation:landscape) {

html {

font-size: 21px;

}

}

@media only screen and (min-width:992px) {

html {

font-size: 24px;

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。