Creating a website using Bootstrap:
<div class="row padding_zero">
<div class="col section px-0">
<img class="img-trans padding_zero" src="./svg/clouds-00.svg" style="margin-top: -150px"/>
</div>
</div>
<div class="row padding_zero">
<h1 class="pick_your_color animate">Choose Your Color</h1>
</div>
.img-trans {
position: absolute;
bottom: 0;
z-index: 0;
}
.section {
height: 100vh;
position: relative;
}
The issue I'm facing is that the image always extends beyond the boundaries of the parent div. Any suggestions on what might be causing this problem?