Ever so often you encounter text that just won’t behave in place. Long text is guilty of this, it tends to break it’s containing block and layout.
A useful tip - use the break-word css property to fix this.
.wrap-this {
word-wrap: break-word;
}

30 March 2010 · Comments