我面臨一個問題,我敢肯定有一個簡單的解決方案,但我找不到它。div前往div而不是之後
我有兩個div。第一個模糊背景圖像和內容。它工作得很好。但第二個div而不是在第一個div之後。
這裏是我的代碼:
<div class="section1">
<!-- Content here -->
</div>
<div class="section2">
<!-- Content here -->
</div>
我的CSS:
.section1 {
display: flex;
flex-direction: column;
position: fixed;
left: 0;
right: 0;
z-index: 0;
height: 100%;
margin-top: 100px;
}
.section1:before {
content: "";
background: url('/images/background.jpg') center center;
height: 100%;
position: fixed;
left: 0;
right: 0;
z-index: -1;
display: block;
filter: blur(5px);
}
.section2 {
padding: 50px 0;
display: flex;
flex-direction: row;
flex: 1;
background-color: #FF5D63;
}
我添加了一個邊距在SECTION1爲示範的緣故。結果如下圖所示:
你能告訴我確切佈局ü想達到什麼目的? – Fiido93
我想要圖像下的紅色div。像垂直下。你需要滾動才能看到它。 –