css 连字符在 chrome 中不起作用

des*_*etR 7 html css google-chrome

在我的项目段落(在 p 标签中)我给出了 text-align:justify; 但在某些方面,有更多的空间,所以对于这个解决方案,我尝试:HTML 代码:

<p>What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
Run Code Online (Sandbox Code Playgroud)

CSS代码:

p{
    text-align:justify;
    word-break: break-all;
    hyphens: auto;
}
Run Code Online (Sandbox Code Playgroud)

但在这段代码中,mozilla 可以工作,但不能在 chrome 中工作,为此我尝试

p{
    text-align:justify;
    -ms-word-break: break-all; 
    word-break: break-all; 
    word-break: break-word; 
   -webkit-hyphens: auto; 
   -moz-hyphens: auto; 
   hyphens: auto;
}
Run Code Online (Sandbox Code Playgroud)

在css下面有-webkit-用于chrome,但仍然无法正常工作,请帮忙,请给出解决方案......

Que*_*tin 7

这是适用于 Windows、Linux 和 ChromeOS 的 Chrome 中的一个已知错误