Latest comments
- @NovidicusTitan@sskhekhaliya
hey, I just looked at your site, there are some suggestions:
- There is no need to using
border-radius: 20px 20px 0px 0px;
for image, instead of it just applyoverflow: hidden;
to .container. So it will hide the corners of images also. - It will be good to give a little
padding-bottom
to the card. - Card's
margin-top:40px;
didn't make it vertically centered and if someone will see your site on the big screen then the card is not able to be vertically centered. So for it, you can usedisplay: flex;
for body and then set its direction to column (flex-direction: column;
) and give a height to the body 100vh.
Marked as helpful - There is no need to using