Hi there, I am working on a simple Card Bootstrap 4 component.
<div class="card">
<div class="card-header">This is the header</div>
<div class="card-block">This is the content block</div>
<div class="card-footer">This is the footer</div>
</div>
I have a specific requirement where I need the header and footer to have an opacity of 1, while the block should have an opacity of 0.4. I attempted using rgba in the background-color style but encountered some difficulties.
.card-block { background-color: rgba(245, 245, 245, 0.4); }