I\'m having a problem centering an element that has the attribute position set to absolute. Does anyone know why the images are not centered?
position
absolute
Or you can now use flex box with postion absolute:
.parent { position: relative; display: flex; justify-content: center; } .child { position: absolute; }