亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

??? ??


Text Color

color ??? ???? ??? ???? ? ?????.

??? CSS? ?? ?? ?? ?????.

  • 16?? ? - ?: #FF0000

  • RGB ? - ?: RGB(255,0,0)

  • ?? ?? - ?: red


??? ??

??? ?? ??? ???? ?? ??? ???? ? ?????.

???? ??? ????? ?? ?? ????? ??? ? ????.

text-align? "?? ??"? ???? ? ?? ??? ??? ???? ??? ??? ??? ?????( ??? ?? ?? ?).


??? ??

??? ?? ??? ??? ??? ????? ???? ? ?????.

??? ???? ? ? text-?? ??? ?? ??? ??? ???? ? ?????(??? ?). ?? ??? ?? ???? ??? ?? ????.

h1 :overline;}
h2 {text- ??:line-through;}
h3 {text-??:underline;}

???:

1.jpg


??? ??

??? ?? ??? ??? ???? ???? ???? ? ?????.

? ?? ??? ???? ???? ???? ? ??? ? ??? ???? ??? ? ??? ? ????.

?:

p.uppercase {text-transform:uppercase;}/* ?? ???*/
p.lowercase {text-transform:lowercase;}/* ?? ???*/
p.capitalize {text -transform:capitalize;}/* ? ??? ???? ?????*/


Text indent

text-indent ??? ??? ? ?? ????? ???? ? ?????.

?: ? ?? ? ???? 50px

p {text-indent:50px;}

???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> h1 { text-align: center; text-transform: uppercase; color: #A7C942; } p { text-indent: 50px; text-align:justify; letter-spacing:3px; } a { text-decoration:none; } </style> </head> <body> <h1>text formatting</h1> <p>This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties. The paragraph is indented, aligned, and the space between characters is specified. The underline is removed from the <a target="_blank" href="#">"嘗試一下"</a> link.</p> </body> </html>