How to center an image horizontally and align it to the bottom of the container?
.image_block { width: 175px; height: 175px; position: relative; } .image_block a { width: 100%; text-align: center; position: absolute; bottom: 0px; } .image_block img { /* nothing specific */ } explanation: an element positioned absolutely will be relative to the closest parent which has a non-static positioning. i’m assuming you’re happy with how your .image_block displays, … Read more