Aug 9, 2001 #1 welshone Programmer Joined Jul 30, 2001 Messages 414 Location 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 Joined Aug 3, 2000 Messages 139 Location 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>