Is it possible to have one link split into different colours, and retain a hover function?
This snippet works with the colours, but the hover only affects the underline of the link:
<style type="text/css">
.white{font-family:arial;color:#cccccc}
.blue{font-family:arial;color:#0000ff}
A:hover{color:#000000}
</style>
<a href="#"><span class="white">white</span><span class="blue"> blue</span></a>
This snippet works with the colours, but the hover only affects the underline of the link:
<style type="text/css">
.white{font-family:arial;color:#cccccc}
.blue{font-family:arial;color:#0000ff}
A:hover{color:#000000}
</style>
<a href="#"><span class="white">white</span><span class="blue"> blue</span></a>