Home  >  Article  >  Web Front-end  >  How to remove underline in css

How to remove underline in css

藏色散人
藏色散人Original
2021-02-28 15:57:224767browse

How to remove css underlines: First create an HTML sample file; then use the a tag to create a link in the div module; then set the class attribute to the div tag and set the attribute value to demo; finally pass text- Just remove the underline from the decoration attribute.

How to remove underline in css

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

Create a new html file, named test.html, to explain how to remove underlines in css.

How to remove underline in css

In the test.html file, use the div tag to create a module. In the div module, use the a tag to create a link.

How to remove underline in css

In the test.html file, set the class attribute for the div tag. The attribute value is demo. It is mainly used to set the css style through this class below. [Recommended: "css video tutorial"]

How to remove underline in css

In the test.html file, write tag, the css style of the page will be written in this tag.

How to remove underline in css

Since the a tag has several states, namely normal state, clicked state, and active state, the styles of these states need to be set respectively. The code is as follows:

How to remove underline in css

In the css tag, use the text-decoration attribute to set the three states of the a tag, and set its attribute value to none to remove the underline. Effect.

How to remove underline in css

Open the test.html file in the browser to check the effect.

How to remove underline in css

The above is the detailed content of How to remove underline in css. 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