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

How to decorate text

Example analysis:

The text-decoration attribute specifies the decoration added to the text.

The modifications that can be set are:

● Underline: Define a line under the text.?

●overline: Define a line on the text.

● Line-through: Define a line that passes under the text.?

●blink: Define blinking text.

#Note: The modified color is set by the "color" attribute.

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(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>
submitReset Code