gpt4 book ai didi

html - 如何在媒体查询中定义所有低于和高于1366的分辨率?

转载 作者:太空宇宙 更新时间:2023-11-04 13:40:03 25 4
gpt4 key购买 nike

我需要为不同的屏幕分辨率定义单独的 CSS 文件 - 一个文件宽度为 1366 像素及更低,另一个文件更高。你能给我正确的html代码吗?

最佳答案

对于 1366 像素:

HTML:

<link href="styles.css" rel="stylesheet" media="all and (max-width: 1366px)"> 

CSS:

@media screen and (max-width: 1366px) {

//codes

}

对于其他尺寸:

HTML:

<link href="styles2.css" rel="stylesheet" media="all and (min-width: 1366px)"> 

CSS:

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

//codes

}

关于html - 如何在媒体查询中定义所有低于和高于1366的分辨率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22757949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com