How to remove link underline

Example analysis:

a {text-decoration:none;}

##text- The decoration attribute is used to specify decorations added to the text.

a tag is used to define hyperlinks.

When you set the text-decoration:none:none; style to the a tag, you can remove the underline of the link.

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> a {text-decoration:none;} </style> </head> <body> <p>链接到: <a href="http://www.php.cn/">PHP中文网</a></p> </body> </html>
submitReset Code