I have problem in CSS. I want to design a login page like picture below.
I used padding-top for create space between picture and top border of the page. But when I do this, the border-radius of picture is not working for all corners! It is not working for border top right and left! I do not know why this happen!
HTML
<img src="img/avatar-01.jpg" alt="" class="Image">
CSS
.Image {
border-radius: 50%;
display: block;
margin: 0 auto;
padding-top: 120px;
}
However if I use margin-top it works correctly!!
CSS
.Image {
border-radius: 50%;
margin: 125px auto 10px 612px;
}
Why this happen? Thanks for your help in advance