-1

I want to center an image in the middle that has equal margin on all edges.

div {
    margin-top: 50px; 
    width: 40%; 
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 8%); 
    height: 60vh; 
    overflow: hidden; 
 }

img { 
     object-fit: contain; 
     max-height: 55vh;
     width: 100%;
 }
deepakchethan
  • 5,240
  • 1
  • 23
  • 33

1 Answers1

0

You can center an element within another element with flexbox.

div {
  /* other styles */
  display: flex;
  align-items: center;
  justify-content: center;
}
AJcodez
  • 31,780
  • 20
  • 84
  • 118