Just starting to learn CSS and I attempted to include a background image on a div element like this:
<div class="col-4 customBack">
</div>
Here is the code for the background image:
.customBack{
background-image: url("img/shadow3.png") !important;
}
However, the background image did not appear on the div as intended!
Any suggestions on how to properly display this background image...