gpt4 book ai didi

css - 对于某些媒体查询,如何将右侧 div float 到左侧,将左侧 div float 到右侧 div 下方

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

对于某些媒体查询,如何将右侧的 div float 到左侧,将左侧的 div float 到右侧的 div 下方

/* HTML*/
<div class="pwrp">
<div class="lcol">
left column
</div>
<div class ="rcol">
right column
</div>
</div>
/*CSS */
.pwrp { width:500px;}
.lcol { width :250px; background-color:red;float: left }
.rcol{ width:250px; background-color:pink;float:right}
@media screen and (max-width: 400px) {
.pwrp { width :300px;}
.lcol { float:left;}
.rcol { float:none;}
}
jsfiddle link :[link1][1]
http://jsfiddle.net/jimoscarlobo/hgh603mv/2/

最佳答案

试试这个-

@media screen and (max-width: 400px) {
.pwrp{
width :300px;
display: flex;
flex-flow: row wrap;
}
.lcol{
float:left;
order: 2;
}
.rcol{
float:right;
order: 1;
}
}

编辑:

我已经更新了你的 fiddle

关于css - 对于某些媒体查询,如何将右侧 div float 到左侧,将左侧 div float 到右侧 div 下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25763551/

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