I am trying to create an HTML document that should look something like
Some text that spans multiple rows
4 4 4 5 8 4
but that has some statistical information
3 4 3 4 11 12
beneath almost every word
7 6 5 4
I have tried something like
<span>Some<br>4</span>
<span>text<br>4</span>...
and
<style>
table {display:inline}
</style>
...
<table><tr><td>some</td><td>4</td></tr></table>
<table><tr><td>text</td><td>4</td></tr></table>
both of which didn't give me the desired result.
So, can I solve this problem with CSS?