国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

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