我有兩個箱子,我用。我需要做的是接下來的兩個盒子不能下,但在移動視圖之後。位置元素背後:絕對大小HTML CSS
.bg_info_profile {
padding-bottom: 20%;
}
.bg_info_profile .bg_profile_red_left {
background: green;
padding-bottom: 110px;
width: 50%;
position: absolute;
}
.bg_info_profile .bg_profile_red_right {
background: yellow;
padding-bottom: 110px;
width: 50%;
float: right;
position: relative;
}
<div class="bg_info_profile">
<div class="bg_profile_red_left">
asdf
</div>
<div class="bg_profile_red_right">
asdf
</div>
</div>
因此,您添加了很好的演示,但決定不添加文本?證明問題。 – dfsq
當我嘗試這樣做時,它只能通過框 – Philip