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
The simpler, the best:
img { top: 0; bottom: 0; left: 0; right: 0; margin: auto auto; position: absolute; }
Then you need to insert your img tag into a tag that sports position:relative property, as follows: