How to wrap long single words into a new line using CSS?
Originally Published Here ๐!
To wrap single long words into a new line using pure CSS, you can use a property called overflow-wrap and set its value to break-word.
/* Wrap long word into newline */
overflow-wrap: break-word;
To make it work with th...
melvingeorge-me.hashnode.dev1 min read