gpt4 book ai didi

css - 响应式 CSS - 两组尺寸?

转载 作者:太空宇宙 更新时间:2023-11-04 00:15:33 27 4
gpt4 key购买 nike

我希望有人能阐明我将如何在 jQuery、css 等中做到这一点。

我有一个宽度为 900 像素的网站。但是如果用户展开宽度为 1140 像素或更大的窗口,我希望网站将宽度设置为 1440 像素。没有介于两者之间的原因,这是因为我使用的是 jQuery 流沙插件,我希望一切都能完美契合。

最佳答案

媒体查询确实是可行的方法;没有链接或代码示例,像这样的东西应该让你开始,在你的 css 中:

#someSelector {width:900px;}//all the css here for less than 1140px

@media all and (min-width:1139px) {//css here for 1140 and up
#someSelector {width:1140px;}
}

关于css - 响应式 CSS - 两组尺寸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11419405/

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