CBSE Class 10 Computer Applications
Question 20 of 37
Cascading Style Sheets (CSS) — Question 16
Back to all questions 16
Question Question 16
How do you display hyperlinks without an underline?
- a {decoration:no underline}
- a {text-decoration:none}
- a {hyperlink:no underline}
- a {text-decoration:no underline}
a {text-decoration:none}
Reason — To display hyperlinks without an underline, the value of text-decoration property is set to none.