Home  >  Article  >  Web Front-end  >  What is the CSS style declaration statement to cancel the underline of a hyperlink?

What is the CSS style declaration statement to cancel the underline of a hyperlink?

青灯夜游
青灯夜游Original
2021-12-09 12:10:142430browse

The CSS style declaration statement to cancel the underline of a hyperlink is "text-decoration:none;"; where "text-decoration" is an attribute, which can specify the decoration added to the text, and "none" is the attribute value, Used to specify that no text modification will be added, and the original underline style of the hyperlink will be removed.

What is the CSS style declaration statement to cancel the underline of a hyperlink?

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Style is the smallest syntax unit of CSS. Each style contains two parts: selector and declaration (rule), as shown in the figure below.

What is the CSS style declaration statement to cancel the underline of a hyperlink?

If you want to remove the underline of a hyperlink in CSS, you need to use the text-decoration attribute. Just set its attribute value to "none".

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			a{
				text-decoration: none;
			}
		</style>
	</head>
	<body>
		<a href="https://www.php.cn/">PHP中文网</a>
	</body>
</html>

What is the CSS style declaration statement to cancel the underline of a hyperlink?

What is the CSS style declaration statement to cancel the underline of a hyperlink?

Analysis: In the above style, the

  • selector is a, is an element selector

  • The style declaration statement is: text-decoration: none;, which specifies that the text must be unmodified.

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

    • none Default. Text that defines the standard.

(Learning video sharing: css video tutorial)

The above is the detailed content of What is the CSS style declaration statement to cancel the underline of a hyperlink?. 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