Bootstrap

css white-space| word-break属性详解

white-space

规定如何处理元素中的空白

white-space属性源码空格源码换行<br>换行容器边界换行
normal合并忽略换行换行
nowrap合并忽略换行不换行
pre保留换行换行不换行
pre-wrap保留换行换行换行
pre-line合并换行换行换行

word-break

  在恰当的断字点进行换行:

word-break: normal|break-all|keep-all;
描述
normal使用浏览器默认的换行规则。
break-all允许在单词内换行。
keep-all只能在半角空格或连字符处换行。
;