gpt4 book ai didi

css - 如果访客在移动设备上,切换 2 个 div

转载 作者:行者123 更新时间:2023-11-28 10:37:36 24 4
gpt4 key购买 nike

我的桌面情况:

enter image description here

我的移动设备情况:

enter image description here

我想要的移动设备情况:

enter image description here

在这种情况下有什么 CSS 技巧可以应用吗?

最佳答案

Although I think this a problem test tackled with jquery. This is how I would do it with CSS

<div class="div-one"></div>
<div class="div-two"></div>




div-one {
height:150px;
display:inline-block;
float:left
width:50%;
background-color:red;

}

.div-two {
display:inline-block;
height:150px;
width:50%;
background-color:blue;

}

@media only screen and (max-width : 480px) {
.div-two {
position:absolute;
float:none;
display:block;
top:0px;
width:100%;
height:150px;
}
.div-one {
float:none;
display:block;
width:100%;
height:150px;
margin-top:150px;
}
}

这是我的例子:http://codepen.io/anon/pen/hdLDe

关于css - 如果访客在移动设备上,切换 2 个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23274253/

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