在Typecho中文主题开发中,有时会出现一些英文排版问题,例如:长英文或长链接溢出显示范围(没有换行),或者换行导致英文单词断词,影响阅读体验。解决上述问题的方法如下:

自动换行

word-wrap: break-word;
word-break: normal;

英文单词不拆词

word-break: keep-all;
word-wrap: break-word;
white-space: pre-wrap;

英文单词两端对齐

word-break: keep-all;
word-wrap: break-word;
white-space: pre-wrap;
text-align: justify;