gpt4 book ai didi

jquery - 更改 div 窗口的位置正在调整大小

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

大家好,我有两个 div 的最新消息, slider

<div id="topcontent">
<div id="latestnews"> Content1 </div>
<div id="slider"> content2 </div>
</div>

我为此使用了以下 css

#topcontent {
height:auto;
margin-top:15px;
overflow:hidden;
}
#latestnews {
width:32%;
float:left;
height:auto;
}

#slider {
margin:0 33%;
width:67%;
position:relative;

}

@media handheld, only screen and (max-width: 767px) {

#latestnews {
float:none;
width:100%; }
#slider {
margin:0;
width:100%; }
}

当width达到767px时content 1先放置然后content2放置,实际上当width达到767px时需要先放置content2。如何以不同的宽度重新排列 div。请帮助我。

最佳答案

试试位置属性向左浮动

@media handheld, only screen and (max-width: 767px) {

#latestnews {
float:left;
width:100%;
position:relative;
}

#slider {
margin:0;
width:100%;
float:left;
position:absolute;
}

}

关于jquery - 更改 div 窗口的位置正在调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19564646/

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