vote up 0 vote down star

I've got two spans in a div. I want to align them next to each other. I'm doing this by floating them both left and right. The problem is that these spans have variable heights (they slide down when you click for 'more options'). So when their heights are changed during runtime (by sliding down), they won't push down the elements under them. If there's a way to align them without floating them, that would work.

flag

3 Answers

vote up 2 vote down check

Maybe an element with "clear:both" after those spans will solve your problem?

link|flag
You mean float one span either left or right with clear:both, leave the other as is? – gAMBOOKa Sep 7 at 20:34
Got it... this works perfectly! – gAMBOOKa Sep 7 at 20:38
vote up -1 vote down

At the risk of getting massive downvotes, use a <table>?

link|flag
I'll be first to downvote – gAMBOOKa Sep 7 at 20:35
vote up 1 vote down

Put overflow:auto or overflow:hidden on your div. This will force the div to size to the floating contents inside.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.