Posts by Marcelo Machado • 121 points
1 post
-
2
votes11
answers97880
viewsA: Center image vertically within a div
To center an image within a div, you need to first put the div with position: relative and the image with position: absolute. After that,transform: translate(-50%,-50%), along with top 50% and left…