我的網頁上有一個背景圖片。現在我想添加浮在其上的內容。下面的代碼將內容放置在圖像後面。如何糾正?如何在頁面內容後面放置背景圖片?
請注意,我已經借了這個鏈接,背景圖片討論(我試圖讓效果):CSS-Only Technique #2
來自:http://css-tricks.com/perfect-full-page-background-image/
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
<!--
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}
-->
</style>
</head>
<body>
<div id="bg">
<img src="myimage.jpg">
</div>
<div id="mycontent">
...
</div>
</body>
</html>
你爲什麼不把背景圖像放在身體上 – Huangism 2014-11-03 21:14:23
我建議把背景圖像放在身體標籤上。如果不是,請嘗試給#bg一個-1的東西,或者你甚至可以把你的#bg div放在前面,然後把內容放在第一位。 – jleggio 2014-11-03 21:15:27
div與bg類不是必需的,你可以添加背景圖像到mycontent div – 2014-11-03 21:15:46