why is my content showing outside the div?

You are floating .count so it doesn’t influence it’s parent container’s height.

Set overflow: hidden on the parent (.commentbox) or use one of the other float containing techniques so that it does.

Leave a Comment