gpt4 book ai didi

jquery - 我想在页面调整大小时将一个 div 移动到容器下方,我该怎么做?

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:09 24 4
gpt4 key购买 nike

我有以下结构。 http://i.stack.imgur.com/l59Zx.png {图片链接}

我想在调整窗口大小时移动底部的侧边栏,但我想不出办法。

这是我的一些代码

<div class="contentWrapper">
<div id="sidebar">.........</div>
<div class="content box">......</div>
</div>

CSS

.contentWrapper{
position: relative;
width:980px;
padding:91px 0 0 0;
margin:0 auto
}

#sidebar {
position: absolute;
top:100px; bottom:-100px; right:0;
width:200px;
background:#000;
}

.contentBox{
background:rgba(0, 0, 0, 0.8);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000,endColorstr=#cc000000); /* IE */
padding:30px 0;
margin:0 auto;
font-family:'Abel';
font-size:24px;
color:#fff;
text-align:center
}

最佳答案

实现此目的的最佳方法是使用 @media 查询。

在其余 CSS 代码的底部使用此代码。

@media (max-width: 768px){  /* mention the width here in px for which you want the sidebar to move down */
#sidebar {
position: relative;
display: block;
}
}

向上阅读:CSS media queries - Web developer guide | MDN

关于jquery - 我想在页面调整大小时将一个 div 移动到容器下方,我该怎么做?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29513153/

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