文字を装飾する方法LOGIN

文字を装飾する方法

分析例:

text-decoration 属性は、テキストに追加される装飾を指定します。

設定できる変更は次のとおりです:

● 下線: テキストの下に線を定義します。

●overline: テキスト上に線を定義します。

● ラインスルー: テキストの下を通過するラインを定義します。

#●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>
コースウェア