0

我的 Wordpress 正在切断文本,我想知道是否可以将其关闭或修复。

例如,如果文本宽度不适合页面宽度,而不是将下一个单词移动到新行,Wordpress 会切断一半的单词

这句话: "The quick brown fox jumps over the lazy dog system"

应该是(如果它不适合宽度):

The quick brown fox jumps over the lazy dog

system

怎么了:

The quick brown fox jumps over the lazy dog sys-
tem

例如,这个词system正在被切断。

4

1 回答 1

1

最有可能的是,CSS 是罪魁祸首(使用 TwentyTwelve?),例如:

.site-content article {
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

用。。。来代替:

.site-content article {
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
}
于 2013-04-26T21:10:55.783 回答