How to center the image element inside the wrapping div
Advertisements The ScreenShots of the jsx and css code and that of the web page is given below. >Solution : Try giving the parent div a display flex and using the justify-content and align-items properties like this .movie_image { display: flex; justify-content: center; align-items: center; height: 200px; border: 2px solid black; } .image { height:… Read More How to center the image element inside the wrapping div