gpt4 book ai didi

css - 媒体查询内容适配

转载 作者:行者123 更新时间:2023-11-28 17:06:28 26 4
gpt4 key购买 nike

我无法正确处理我的 #main-wrapper 行为 @media only screen and (min-width: 1400px)

我想要得到的是 #main-wrapper 的分辨率 <1400px 和 >1400 的宽度为 100%,其宽度设置为 1336px

现在 #menu-section 溢出 #content-section

实例: http://solutionsmvo.nazwa.pl/nell-ogrody/o-nas/

代码:

#main-wrapper {
width: 100%;
overflow:hidden;
}

#menu-section {
width: 25%;
float: left;
height:100vh;
position: fixed;
}

#content-section {
width: 75%;
float:right;
min-height: 100vh;
}

@media only screen and (min-width: 1400px) {
#main-wrapper {width: 1336px; margin: 0 auto;}
}
<div id="main-wrapper">
<div id="menu-section">
</div>

<div id="content-section">
</div>
</div>

最佳答案

因为你的 #menu-section 在 <1400px 有 position: fixed; 属性,在这种情况下没问题,但是当 width > 1400px 时,就会出现这个问题。删除 position: fixed; 并测试它。

关于css - 媒体查询内容适配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30255259/

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