Is it possible to add a line break on each white space using CSS?
For example, if I have string \"Format It\" I would like to display it like
\"Format It\"
A solution would be to make it not wide enough, the standard white-space handling will make the lines wrap :
white-space
p { width:1px; }
demonstration
But it really depends on your use case and specific needs.