在我的主頁上我有一個完整寬度的背景圖片,但是,我的內容不會顯示在其下方。相反,它顯示在背景圖像的頂部。任何人都可以幫助我將我的內容顯示在我的背景圖片下方嗎在背景圖片下方顯示內容
這是我的html代碼:
<html>
<title>PLR.com Home</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.homepage-backgroundimage {
\t z-index: -1;
\t position: absolute;
\t background-size: cover;
\t left:0; right:0; top:0;
\t margin-left: auto;
\t margin-right: auto;
\t display: block;
\t }
.flexcontainer-bodyarea {
\t display: -webkit-flex;
\t display: flex;
\t -webkit-flex-wrap: wrap;
\t flex-wrap: wrap;
\t width: 1000px;
\t height: 500px;
\t background-color: #bbb;
\t }
.flexitem-50ptextarea {
\t width: 480px;
\t height: 200px;
\t margin: 10px;
\t background-color: #fff;
\t }
body {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
color: #bbb;
}
</style>
<body>
<div class="homepage-backgroundimage"><img src="http://pianolessonresource.com/wp-content/uploads/2017/09/Untitled-1.jpg"></div>
<div class="flexcontainer-bodyarea">
<div class="flexitem-50ptextarea">This is one text area</div>
<div class="flexitem-50ptextarea">This is two text area</div>
</div>
</body>
</html>
不能顯示背景圖片下面的文字,這樣你就無法看到它。雖然你可以把透明背景放到你的div上。 – bhansa
背景容器絕對定位。這可能是導致你的問題。嘗試親戚,然後你將不得不玩我猜猜的背景大小。 –