When i have long word which is longer than my container i am using "word-break: break-all;". I was wondering is it possible to put dash(-) at the break point of the word?
This is the css that i am using for the text:
p{
-ms-word-break: break-all;
word-break: break-all;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}