Home  >  Article  >  Web Front-end  >  How to remove the underline of hyperlink in html

How to remove the underline of hyperlink in html

藏色散人
藏色散人Original
2021-04-01 14:08:5859124browse

html method to remove the underline of a hyperlink: first create an HTML sample file; then create a hyperlink through the a tag; finally, add the attribute "text-decoration:none" to the a tag to remove the hyperlink Underline.

How to remove the underline of hyperlink in html

The operating environment of this article: Windows7 system, HTML5&&CSS3 version, DELL G3 computer

You can use css text-decoration:none to cancel the connection Underline

<html>
<head>
<style type="text/css">a {text-decoration: none}</style>
</head> 
<body><p><a href="具体连接地址">这是一个链接</a></p></body> </html>

How to remove the underline of hyperlink in html

##Extended information:

Hypertext markup language is an application under the standard universal markup language. It is also a specification and a standard. Use mark symbols to mark the various parts of the web page that you want to display. 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" "css video tutorial"

The above is the detailed content of How to remove the underline of hyperlink in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn