PDA

View Full Version : [html/css]immagine link


$te
02-07-2008, 10:27
quando metto un'immagine che é linkata, questa ha un contorno che io non voglio, come mai?come faccio a toglierlo?
grazie

vladix
02-07-2008, 10:49
<img src="#" border="0" style="cursor:pointer;"/>

kk3z
02-07-2008, 10:50
meglio con
<style type="text/css">
img {
border:0;
}
</style>

DanieleC88
02-07-2008, 12:25
Se intendi che IE ti lascia un contorno dopo il click che tu non vuoi, usa:
<a href="..." onfocus="this.blur()">...</a>