Make parallaxed element completely opaque
问题 I have the following HTML structure: <section class="mysection"> <div class="parallax"> <div> <svg></svg> </div> </div> </section> <section class="back"> <div class="triangle"> <img src="img/red-triangle-bkgrd.png"> </div> </section> This is the CSS in LESS: .parallax{ width: 90%; margin-left: auto; margin-right: auto; } section.back { .triangle { position: relative; img { position: absolute; right:0; top: 0; } } } Before using parallax on the parallax , back just sits immediately below the