htmlHow to remove the underline: First create an HTML page; then enter the a tag in the body; and finally cancel the underline of the a link through the "text-decoration:none" attribute.
The operating environment of this article: windows7 system, HTML5&&CSS3 version, DELL G3 computer.
You can use csstext-decoration:none
to cancel the connected underline
<html>
<head>
<style type="text/css">a {text-decoration: none}</style>
</head>
<body><p><a href="具体连接地址">这是一个链接</a></p></body> </html>
Copy after login
##Extended information:
Hypertext Markup Language is an application under the Standard Universal Markup Language. It is also a specification and a standard. It uses markup symbols to mark various parts of the web page to be displayed. The web page file itself is a text file. By adding tags to the text file, you can tell the browser how to display the content (such as how to process text, how to arrange pictures, how to display pictures, etc.).
The browser reads the web page files in order, and then interprets and displays the marked content according to the tags. The error will not be pointed out for the wrongly written tags, and the interpretation and execution process will not be stopped. The compiler can only pass Display the effect to analyze the cause and location of the error. However, it should be noted that different browsers may have different interpretations of the same tag, and thus may have different display effects.
[Recommended learning:
HTML video tutorial]
The above is the detailed content of How to remove underline in html. For more information, please follow other related articles on the PHP Chinese website!