1. white-space //how white-space inside an element is handled.如何处理元素中的空白
nrmal //默认。空白会被浏览器忽略。
nowrap //text continues on the same line until <br/>文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止。
pre //空白会被浏览器保留。
pre-line //合并空白符序列,但是保留换行符。
pre-wrap //保留空白符序列,但是正常地进行换行。
inherit //都不支持
2. word-break //line breaking rules for non-CJK scripts规定非中日韩文本的换行规则。
normal
break-all //允许在单词内换行。
keep-all //只能在半角空格或连字符处换行。
3. word-wrap //long words 长单词或URL地址中间换行
normal
break-word
4. text-overflow //when text overflows the containing element
clip
ellipsis //”…”
string
5. text-wrap //都不支持