How to center an image element inside a wrapping div
P粉043566314
P粉043566314 2023-09-10 14:09:40
0
1
519

Given below are the jsx and css codes and screenshots of the web page.

P粉043566314
P粉043566314

reply all(1)
P粉517090748

Try giving display Flex to the parent div and use justify-content and align-items properties like below

.movie_image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  border: 2px solid black;
}

.image {
  height: 100%;
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template