CSS Links no decoration

liunx

Guest
Hi

If I put this CSS code into the <head> of my web page will all visitors see the link with NO underline ? or can visitors to my site change their browser settings to show a line ??:confused:

<style type="text/css">
<!--
A:link { text-decoration: none }
A:visited { text-decoration: none }
-->
</style>

Appreciate your adviceIf users have it set to view your site with their own stylesheet, then yes, they can over-ride your styles. However, most people don't know about this feature -- at least in IE, which the general population uses.
I wouldn't worry about it.
Although I'd consider leaving the underline there, so the link is more clearly defined as a link to those with poor eyesight or who are colorblind.Hi Paul Jnr :)

you answered everything, about ie and style sheets, thats great information,
thank you so very much, friend.:cool:

Have a nice day.Originally posted by Chan
Hi Paul Jnr :)

you answered everything, about ie and style sheets, thats great information,
thank you so very much, friend.:cool:

Have a nice day.
You're welcome! :)
You have a good day too. ;)

Cheers - Paul JrYou can also use:
<style type="text/css">
<!--
a { text-decoration: none }
-->
</style>Hi Dave :)

Thanks so much-------- :)
 
Back
Top