特殊字体
~~~
font: system;/* 系统输入框字体 */
font: system-menu;/* 系统菜单字体 */
font: system-caption;/* 窗口标题字体 */
font: system-status;/* 状态栏 tooltip 的字体*/
~~~
文本选择区颜色
`text-selection: #FFF #C00;/* 格式: 前景色 背景色 */`
文本过长截断
~~~
text-overflow: ellipsis;/* 省略号处理 */
此属性需配合 white-space: nowrap; 和 overflow: hidden; 使用.
~~~
特殊折行处理
~~~
text-wrap: unrestricted;/* 允许截断换行. CSS3里面为 text-wrap: avoid */
white-space: prewrap;/* 按多行文本输入框的折行方式处理文本 */
~~~
文本内容
`content: "text here!";/* 同 CSS3 */`