How can I remove the underline of a link in chrome using CSS? [duplicate]
This question already has an answer here: Underlining visited links 2 answers (it works in FF) How can I, using CSS, remove the underline of a visited link? I have tried: a:visited { color: rgb(255, 255, 255); text-decoration: none !important; } and a:visited { color: rgb(255, 255, 255); text-decoration: none; } The only CSS property you can apply on :visited links in most webkit-based browsers (like Chrome) is color . This is to prevent history stealing . Also, you can't determine the value of the color CSS property of links from JavaScript. See https://bugs.webkit.org/show_bug.cgi?id=24300