Q. By default, links are displayed with an underline. How can you remove the underline from all links using CSS code?
β
Correct Answer: (B)
a {text-decoration:none;}
Explanation: Links can be styled with any CSS property. This a {text-decoration:none;} removes the underline from all links.