css Text Wort Trennung Hyphen自动换行#snippet #css

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css Text Wort Trennung Hyphen自动换行#snippet #css相关的知识,希望对你有一定的参考价值。

.wrap {
  word-wrap: normal;
  word-wrap: break-word;  
}

.pre {white-space: pre;}
.nowrap {white-space: nowrap;}
.pre-wrap {white-space: pre-wrap;}
.pre-line {white-space: pre-line;}

.hyphenate {
 -ms-word-break: break-all;
     word-break: break-all;

     /* Non standard for webkit */
     word-break: break-word;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;
}

以上是关于css Text Wort Trennung Hyphen自动换行#snippet #css的主要内容,如果未能解决你的问题,请参考以下文章

自制常用工具类

新手理解HTMLCSSjavascript之间的关系

main.css 没有加载,因为它的 MIME 类型“text/html”不是“text/css”?

库魔法。 text/plain 而不是 text/javascript text/css

服务器通过“text/html”响应“text/css”请求

为啥 `white-space-collapsing` CSS3 属性的引入推迟到 CSS-text-4(可能是 `text-space-collapse`)?