Skip to content

Instantly share code, notes, and snippets.

@naoyeye
Forked from liveme/break-word.css
Last active May 10, 2019 08:22
Show Gist options
  • Save naoyeye/d926a81a80d997fe64377a01af47b53e to your computer and use it in GitHub Desktop.
Save naoyeye/d926a81a80d997fe64377a01af47b53e to your computer and use it in GitHub Desktop.
连续字符换行/不换行
/*强制不换行*/
div {
white-space: nowrap;
word-wrap: normal;
}
/*自动换行*/
div {
word-wrap: break-word;
word-break: normal;
}
/*强制英文单词断行*/
div {
word-break: break-all;
}
/*溢出省略号*/
div {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment