I'm working with a bootstrap carousel and I want to set the background image of each carousel-item to be .4 opacity, while keeping the caption at full 1 opacity. Is there a way to achieve this?
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('img/banner.jpg')">
<div class="carousel-caption d-none d-md-block">
<h2 class="display-4">First Slide</h2>
<p class="lead">This is a description for the first slide.</p>
</div>
</div>
</div>
</div>