I have a <div> with hard-coded width. Inside the <div> are several hundred <span> tags. Can I wrap the spans so that line spacing is correct and wrapping is between spans? I use word-wrap: break-word and it looks a mess.
Here is pseudo code.
span {
margin: 2px;
border: 1px dotted #cccccc;
padding: 4px 10px 4px 10px;
}
div {
padding: 5px;
margin: 5px;
border: 1px solid #cccccc;
width: 800px;
word-wrap: break-word;
}
<div>
<span>stuff</span>
<span>more stuff</span>
<span>even more stuff</span>
.
.
.
</div>
Thanks!
EDIT for clarification: There should be multiple spans on each line, and wrapping should be between spans.