DanCapitanDePlai
DanCapitanDePlai

Reputation: 457

Elements position

I started to build a classified ads website and I'm encountering some problems along the way.
On this webpage, which is the template that I'll use for the site, I'm having some problems with positioning 2 elements that appear out of their place on all browsers except.. IE 7 :)

Firebug tells me nothing cause i tried several tricks to move them at their place but had no success.

What could be the problem ?

Thanks.

Upvotes: 2

Views: 71

Answers (2)

agryson
agryson

Reputation: 297

Make your <tbody>'s vertical-align equal to top

Upvotes: 1

thirtydot
thirtydot

Reputation: 228282

Add this:

td {
    vertical-align: top;
}

The default vertical-align is baseline, which is the cause of your problem.

Upvotes: 2

Related Questions