Reputation: 961
I'm trying to align 3 p tags side by side, and make them all function like a single paragraph styled with the attribute: WordWrap:Break-Word
So that it keeps the p tags next to each other free to move to the next line or stretch into a single line depending on the size. The end result should look soimething like this:
This is a sample of the word streteched out:
*<p>sample document<p/><p>sample document<p>sample document</p>*
This is a sample of the words crunched together:
*<p>sample document<p/><p>sample
document<p>sample document</p>*
Here's the jfiddle with the 3 p tags.
Upvotes: 5
Views: 13353