main.jpgの上にdot-overlay.png(網点)をかぶせたいのですが、
dot-overlay.pngで上書きされてしまって、main.jpgが表示されない。
<div class="bg-img dot-overlay"></div>
scss
1.bg-img{ 2 max-width: 2400px; 3 height: 500px; 4 background-image: url(img/main.jpg); 5 background-position: center; 6 background-repeat: no-repeat; 7 background-size: cover; 8 position: absolute; 9 z-index: 10; 10 11 12 @include mq-down(md) { 13 height: 300px; 14 } 15} 16 17.dot-overlay { 18 background-image: url(img/dot-pattern-09.png); 19 background-repeat: repeat; 20 background-blend-mode: overlay; 21 background-position: 0px; 22 background-size: auto, cover; 23 width: 100%; 24 height: 100%; 25 position: absolute; 26 top: 0px; 27 left: 0px; 28 z-index: 1; 29}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。