Reputation: 187
I am currently trying to shuffle a paragraph. I would like the paragraph to appear in a block, like this:
WORD WORD WORD WORD
WORD WORD WORD WORD
WORD WORD WORD WORD
WORD WORD WORD WORD
Rather than a line like this:
WORD
WORD
WORD
WORD
WORD
WORD
WORD
Upvotes: 0
Views: 179
Reputation: 136
DIVs by default use display: block
which separates them into individual lines.
Instead of DIV's why don't you use spans? You should be able to get the same effect and spans are not display block by default.
Upvotes: 6