CSS word-break:keep-all not supported?

css, html

Solution

According to MDN page:

`keep-all` value is unimplemented in webkit (see WebKit bug 43917).

Similar topic on SO (Check @MrAlien's answer):

- Safari CSS word-break: keep-all; is not working

Problem

I am trying to wrap all my text(Korean). However, when I try word-break:keep-all, chrome and other browsers states that it is a invalid property. break-all, break-word property works. What is going on here?

Original source

Related problems