gpt4 book ai didi

javascript - 如何根据屏幕分辨率应用特定样式表?

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

我想要 html 中的脚本来识别屏幕分辨率,然后取决于我想为应用程序链接相应的样式表。

例如如果分辨率介于 600x400 之间,那么我想应用 mobile.css,否则使用普通的 web.css。

这可能吗?如果是,那么如何实现这一目标?

我没有使用 jquery...我有 GWT 应用程序,我想将此检查添加到 html 文件中。

最佳答案

现在将这一行添加到您的

头标

像这样

<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> // add this line in your head
</head>

More info

用于 CSS 媒体查询

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

// here your stylesheet
}

More info Click here

关于javascript - 如何根据屏幕分辨率应用特定样式表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16166537/

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