user1200179
user1200179

Reputation:

Positioning div classes with images in a row?

So here's what it looks like:

http://www.whybaguio.com/php/visit/attractions.php

How can I put on three images per row without using the float element. If I use the float, the background of the wrapper gets removed :( I have no idea how to fix this, I tried using the display: inline, using of span instead of div but nothing didn't work :(

Please help!

Thaanks.

Upvotes: 0

Views: 61

Answers (1)

Adrift
Adrift

Reputation: 59779

Just add overflow: hidden; to the #wrapperatt div as the floated children elements are out of the document flow causing the container to collapse - this is pretty typical float behaviour and is why you see the background disappear.

Upvotes: 2

Related Questions