我的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
这个词正在被切断。
答案 0 :(得分: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;
}