Does anyone know how to break words like the examples below using CSS or jQuery?
SAMPLE 1
ConfigTechnologyHormonyAppComponentBackOfficeLaunch
It needs to be broken into
ConfigTechnologyHo
rmonyAppComponentB
ackOfficeLaunch
SAMPLE 2
WorkAppComponentBackOfficeLaunchTechnologyNeteseen
It needs to be broken into
WorkAppComponentBa
ckOfficeLaunchTech
nologyNeteseen
SAMPLE 3
Supplement Hormony based on Continous Integration
It needs to be broken into
Supplement Hormony
based on Continous
Integration
I've attempted using word-break: break-all;
but it doesn't seem to be working.