我有一個來自Codepen的動畫背景(下面的鏈接)但是我無法讓我的文本浮動在背景的前面。因爲我不認爲這將有助於CSS - 製作動畫背景的內容
Codepen我沒有包括JS:https://codepen.io/zessx/pen/ZGBMXZ
截圖:https://gyazo.com/37568fdb9681e4c9d67d4d88fc7658ba
我一直在使用的z-index和使用心不是幫助是絕對位置嘗試。
Index.html
注:我已刪除的代碼是無關緊要的
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div id="bg"></div>
<div class="content w3-content" style="width: 80%;margin-left: 10%;">
<h1 class="font w3-jumbo w3-text-black">MOLLY URS</h1>
</div>
</body>
</html>
style.css
.bg {
z-index: 1;
background: -webkit-radial-gradient(center ellipse, #721B94 0%, #210627 100%) no-repeat center center fixed;
background: radial-gradient(ellipse at center, #721B94 0%, #210627 100%);
overflow: hidden;
}
body {
margin: 0;
}
.content {
position: absolute;
z-index: 100;
overflow: hidden;
}
我看不到你的'.content'格當我查看codepen的來源。 – WizardCoder
對不起,我沒有解釋,我使用的codepen代碼,codepen是我的代碼 –
沒問題。 Joseph Marikle已經回答了你的問題,並且我已經添加了一個codepen作爲對該答案的評論,以幫助你理解問題。 https://stackoverflow.com/a/44553245/8085668。 – WizardCoder