109k views
3 votes
What is the CSS definition for displaying a hyperlink without an underline?

1) text-decoration: none;
2) text-decoration: underline;
3) text-decoration: line-through;
4) text-decoration: overline;

1 Answer

4 votes

Final answer:

The CSS definition for displaying a hyperlink without an underline is text-decoration: none.

Step-by-step explanation:

The CSS definition for displaying a hyperlink without an underline is text-decoration: none;. This property allows you to remove the default underline from hyperlinks. The CSS definition for displaying a hyperlink without an underline is text-decoration: none. Here is an example:

a {
text-decoration: none;
}

The CSS definition for displaying a hyperlink without an underline is text-decoration: none;. This property allows you to remove the default underline from hyperlinks. By using this CSS rule, the hyperlink will be displayed without an underline.

User Aman Tiwari
by
7.5k points