Aug 9, 2001 #1 welshone Programmer Jul 30, 2001 414 GB Hello, I am new to HTML and need to know how to change the colour of a link when I roll my mouse pointer over it. I have used <Style> a : hover {black} </style> but this changes all links. I want some to change to a different colour. thnax in advance
Hello, I am new to HTML and need to know how to change the colour of a link when I roll my mouse pointer over it. I have used <Style> a : hover {black} </style> but this changes all links. I want some to change to a different colour. thnax in advance
Aug 9, 2001 #2 wood MIS Aug 3, 2000 139 CA <style> A:HOVER.black { color: black; } </style> now to use this, <a href="..." class="black">Test</a> Upvote 0 Downvote
<style> A:HOVER.black { color: black; } </style> now to use this, <a href="..." class="black">Test</a>