<1> 字体设置:
/* 单词之间间距 */
letter-spacing:3px;
/* 定义以空格间隔文字的间距(就是空格本身的宽度) */
word-spacing:50px;
/* 定义文本的大小写状态 capitalize首字母大写 | uppercase大写 | lowercase小写 | none | inherit */
text-transform:capitalize;
/*定义首行缩进*/
text-indent:30px;
white-space:pre;
中英混排: font-family:Verdana; vertical-align:baseline;zoom:1;
<2>一般来说,在DIV中实现文字换行时 用word-wrap:break-word 即可!而一般在做后台时,经常会用到TAB表格,在TAB中实现文字或英文换行时用:
table { table-layout:fixed;}
table td{ word-wrap:break-word;}