私はそれに適用された背景イメージ(#wrapper)を持つdivを持ち、divの最初の子は絶対配置されたカラーオーバーレイdiv(.bg-overlay)です。この.bg-overlay divでは、他の要素が配置されていると、背景画像の高さが上がらないようです。divでの高さの問題
この#wrapper内のpタグにいくつかのボトムパッディングを適用しようとしていますが、inspectツールを見ているとオーバーフローしているようです。私は、なぜメイン#wrapper divが高さを増やしているのか理解できません。私はそれに200pxの分の高さを設定しました。私は何か非常にシンプルな私はここで行方不明と確信しています。助けてくれてありがとう、ここに私のマークアップです。
#wrapper {
background-image: url("http://placehold.it/350x150");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
position: relative;
min-height: 200px;
}
.bg-overlay {
background-color: rgba(75, 78, 83, 0.6);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
#content-wrap p {
padding-bottom: 100px;
}
<section id="wrapper">
<div class="bg-overlay">
<div id="content-wrap">
<h1>
Heading Heading Heading
</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
</div>
</section>
このオーバーレイの意図は何ですか?私はその目的を理解していない。 – hungerstar
それはちょうど私が少し暗いthatsすべてであるイメージをしたいように私は背景イメージで使用している色のオーバーレイです。 – rufus