Currently the text is show on top of div , I want it below the image.I am unable to do it.
.modal-body {
width: 100%;
height: 100%;
margin: 0;
background-color: white;
position: relative;
}
#img {
bottom: 0;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
}
<div class="modal-body">
<img id="img" style="width:30%;" src="logo.png" />
<p style="text-align:center;color:3b3b3b;display:block;top:60%;">My text</p>
</div>