CSSText.md - yucing/wp109b GitHub Wiki
1. n {color:顏色/色碼;} ==>改變標記n字的顏色
2. n {text-align:位置;} ==>改變標記n字的位置 (位置:center/left/right)
3.
n {
direction:rtl;
unicode-bidi:bidi-override;
}
==>將字倒過來
4.img {vertical-align:位置;} ==>改變照片在字中間的位置 (位置:top/middle/bottom)
5.
n {
text-decoration:none;
}
==>將字的底線取消
6.
n {
text-decoration:位置;
}
==>將字的底線放在指定位置 (位置:overline/line-through/underline)
7.
n {
text-transform:uppercase/lowercase/capitalize;
}
==>將所有字轉成大寫/轉成小寫/第一個字改成大寫
8.
n {
text-indent:npx;
}
==>將開頭留白
9.
n {
letter-spacing:npx;
}
==>調整字跟字間的大小
10.
n {
line-height: n;
}
==>調整字的間距
11. n {text-shadow: n1px n2px} ==>將字加入陰影 (n1:x移動 n2:y移動)
12. n {text-shadow: n1px n2px 顏色} ==>將字加入顏色陰影 (n1:x移動 n2:y移動)
13. n {text-shadow: n1px n2px n3px 顏色} ==>將字加入顏色陰影 (n1:x移動 n2:y移動 n3:霧化)