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
To center a “position: absolute” element.
.your-element { position: absolute; left: 0; right: 0; text-align: center; // or this -> margin: 0 auto; }