[Solved] Why is css margin-bottom not effecting the rest of the boxes?
First, let’s separate your CSS from your HTML in my own example: #wrap { width: 440px; margin: 0 auto; } .image { float: left; margin: 10px; position: relative; } .image h1 { position: absolute; top: 0; text-align: center; width: 200px; } .image h2 { position: absolute; bottom: 0; text-align: center; width: 200px; } Now, let’s … Read more