1. 程式人生 > >HTML-CSS 文字相關屬性

HTML-CSS 文字相關屬性

文字裝飾的屬性
格式:text-decoration: underline;
取值:
underline 下劃線
line-through 刪除線
overline 上劃線
none 什麼都沒有,常見用途:用於去掉因超連結產生的下劃線(我是超連結,我會產生下劃線
快捷鍵:
輸入td,自動生成text-decoration: none;
輸入tdu,自動生成text-decoration: underline;
輸入tdl,自動生成text-decoration: line-through;
輸入tdo,自動生成text-decoration: overline;

文字水平對齊的屬性
格式:text-align right;
取值:
left 左
right 右
center 中
快捷鍵:
輸入ta,自動生成text-align: left;
輸入tar,自動生成text-align: right;
輸入tac,自動生成text-align: center;

文字縮排的屬性
格式:text-indent: 2em;
取值:
2em,其中em是單位,一個em代表縮排一個文字的寬度
快捷鍵:
輸入ti,自動生成text-indent: ;
輸入ti2e,自動生成text-indent: 2em;