I am using HTML5 and want to display an string in vertical format: For example: WELCOME can be displayed as:
W
E
L
C
O
M
E
Is it possible to achieve? If yes, how can I do this? Note: In the example, there are two line break. Please avoid one line break.
You can use word-break with some small width:
p{
width:10px;
word-break: break-all;
}
JSFiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With