Im trying to position an image in center and bottom of a div, now I have this: image here
and I need to do this: image here
I need to center the cellphone image in the div, my code:
.titulo {
position: relative;
}
.titulo img {
position: absolute;
left: 0;
right: 0;
bottom: 0;
}
<section class="titulo">
<div class="container">
<div class="row">
<div class="col-12">
<img src="/img/background/whatsapp.png" alt="" />
</div>
</div>
</div>
</section>