I have 3 divs that I want to display side by side. If the text inside each div gets too long, I would like it to break to a new line and have the next div stay beside it.
<div style="float: left;">This is some text</div>
<div style="float: left; text-decoration: underline;">It will continue in the next div</div>
<div style="float: left;">And this will be beside that</div>
I am looking to display the above divs like this (with the second div underlined):
This is some text that will continue
in the next div. And this will be beside
that.