I have a bootstrap carousel, that adds the image inline in each carousel-item, and this background image needs to be .4 opacity. But the caption of this carousel-item needs to be 1 opacity. Is there any way i can do 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>