Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I expand comment body that is floated to right my container does not expand with it. How can I fix this?

Better explanation: http://jsfiddle.net/5fmpp/

share|improve this question
Parent containers never expand to contain floated elements without additional CSS properties. – Rob Jul 31 '11 at 15:29

2 Answers

up vote 7 down vote accepted

Add overflow: hidden to the container so it can contain the float:

.comment
{
    width: 960px;
    margin: auto;
    margin-top: 24px;
    font-size: 14px;
    background-color: #777777;
    overflow: hidden;
}
share|improve this answer
Thank you. Worked just great! – Steve Jul 31 '11 at 15:29
1  
...I was using tables for years to avoid that :( – Peter Aug 12 '11 at 0:07

Check this out.

You need to clear the float at the end of the comment box

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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