特殊字體
~~~
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 */`