Is there an encoded character in HTML that allows a break to break at a specific point, but not create a space if it is not required?
For example, I want to show the full URL, for example, the following if the space allows this ...
http:
But if you show a small area (for example, on a mobile screen), I want to split it between /and myso that it automatically wraps around like ...
http:
mylongpagename
I know the CSS command word-wrap: break-word;, but it might end up with something like ...
http:
gename
source
share