Forum Moderators: not2easy
need to kow how to avoid link decoration for images when using css. i tried the following style to the <a> element but this is not working.
a.imagelink
{ text-decoration:none; }
a.imagelink:hover
{ text-decoration:underline; }
im using IE5 but also tried it on NN7 with the same results.
thanks for any help..
Kumar
There are two ways to do this
<style type="text/css">
<!--
img{border:0;}
//-->
</style>
<img src="some.jpg"alt="image"border="0"/>
birdbrain