Let's say I have this Table:
<Table>
<td>
<tr>Hello World</tr>
</td>
</table>
When I resize my browser to a mobile size, I want the text in my table to break down, so it fits in the width of the mobile browser.
For now only words break.. like:
On big screen:
Hello World
When screen gets too small to fit both words in one line:
Hello
World
But when the screen gets even smaller, the word will disappear over the right side of the screen. Instead I want it to break down like this when the screen gets too small to fit the word:
HE
LL
O
WO
RL
D
I tried the CSS property: word-wrap: break-word;
but it didn't work. Any ideas?