Hello quick and easy question i am sure.
Done some boxes here
As you can see the text follows out the bottom of the the box and my p class is not working on that bit of text.
Any ideas on what i am sure is a simple problem?
Many thanks![]()
| SitePoint Sponsor |


Hello quick and easy question i am sure.
Done some boxes here
As you can see the text follows out the bottom of the the box and my p class is not working on that bit of text.
Any ideas on what i am sure is a simple problem?
Many thanks![]()

It's because you set a height on the .enterBoxsLeft; instead, use min-height:
HTML Code:.enterBoxsLeft, .enterBoxs { background-color: #FFFFFF; margin: 2px; text-align: left; padding: 0px; color:#000000; display:inline; float:left; /*This is where I changed height to min-height, not allowing the height to be any less than 120, but if too much content is inside, it will expand. */ min-height: 120px; margin:2px; width: 140px; }
Bookmarks