如何裝飾文字

實例解析:

text-decoration屬性指定新增到文字的修飾。

可以設定的修飾有:

# ● underline:定義文字下的一條線。   

 ● overline:定義文字上的一條線。   

 ● line-through:定義穿過文字下方的一條線。   

 ● blink:定義閃爍的文字。   

附註: 修飾的顏色由 "color" 屬性設定。

繼續學習
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h1 {text-decoration:overline;} h2 {text-decoration:line-through;} h3 {text-decoration:underline;} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> </body> </html>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!