Multiple choice css How do you display hyperlinks without an underline? a {decoration:no underline} a {text-decoration:no underline} a {underline:none} a {text-decoration:none} Reveal answer Fill a bubble to check yourself D Correct answer Explanation To display hyperlinks without an underline, you can use the CSS property "text-decoration" and set it to "none". This will remove the underline from the hyperlink text. Option D is the correct answer: The Answer is: D