Does anyone know how to position an image in the bottom right corner of a div?
I have tried using margin-right and padding-right with 0px on the img tag, but it does not seem to work.
The black lines indicate that I do not need that space
Here is my CodePen for reference:
https://codepen.io/ogonzales/pen/OrZKOr
<header class="header" id="header1">
<img class="margin_right_zero" src="https://raw.githubusercontent.com/alphadsy/alpha-ui/master/images/man.png" width="440px" height="320px">
<div class="circle">
<div class="caption">
<h2 class="title display-3">Alphad <strong>Design & Inpsertion</strong></h2>
<p>Lorem m nisi! Eum vitae ipsam veniam, ullam explicabo quaerat asperiores veritatis nam reprehenderit necessitatibus sequi.</p>
</div>
</div>
</header>
Update 1:
While most answers address the bottom margin issue, the right margin still remains unsolved.
To see this detail, please view the CodePen in Full Page mode.