私の作成した背景の上にh1ヘッダーが表示されませんなぜ起こったのか分かりません。 https://jsfiddle.net/b6gezctv/ここにjsfiddleがありますので、コードを実行して修正されるかどうかを確認することができます。テキストが背景に表示されていません
<!DOCTYPE html>
</html>
<head>
<title>Coming Soon</title>
<link rel="stylesheet" type="text/css" href="soon.css">
<link href="https://fonts.googleapis.com/css?family=Roboto"
rel="stylesheet">
</head>
<body>
<div class="heading">
<h1>COMING SOON</h1>
<hr>
</div>
<div class="start-1"></div>
<div class="start-2"></div>
<div class="start-3"></div>
</body>
h1 {
text-align: center;
color: white;
}
.start-1 {
position: absolute;
background-color: #202b36;
width: 100%;
height: 100%;
z-index: 0;
left: 0;
top: 0;
min-width: 950px;
}
.start-2 {
position: absolute;
left: 0;
top: 0;
background-image: url(https://server.pro/s/img/bg-pattern.png);
background-color: transparent;
background-repeat: repeat;
width: 100%;
height: 100%;
opacity: 0.07;
z-index: 1;
min-width: 950px;
}
.start-3 {
position: absolute;
left: 0;
top: 0;
background-image:
url(https://farm3.staticflickr.com/2821/33503322524_4e67143f45_k.jpg);
background-color: transparent;
background-size: cover;
width: 100%;
height: 100%;
z-index: 2;
opacity: 0.5;
min-width: 950px;
}
ない原因開いているタグの直後にも閉じたHTMLタグがあります。 – BSMP