<div class="kv-wrap">
<div class="kv">
<h1 class="title">タイトル</h1>
</div>
</div>
.kv {
/* 背景に重ねるための設定 */
position: absolute;
top: 0;
left: 0;
/* 文字を真ん中寄せするための設定 */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* 重ねたViewの大きさと背景色を設定 */
width: 100%;
height: 100%;
background-color: black;
}
.title {
color: white;
font-size: 62px;
}
.kv-wrap {
position: relative;
width: 100%;
height: 620px;
background-image: url('https://zeroichi.app/media/wp-content/uploads/2021/01/DSC_1084.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position:center center;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.