I'll paste here my code that I made for a btn... ( the page that I am checking is not on line yet ) but the problem is that the 'div' has borders colored in blue... don't know why... I just would like to hide this borders.. I've tried with border-style: hidden and some more ways...
I'll paste here my code that I made for a btn... ( the page that I am checking is not on line yet ) but the problem is that the 'div' has borders colored in blue... don't know why... I just would like to hide this borders.. I've tried with border-style: hidden and some more ways...
#btn{
background-repeat: no-repeat;
width:172;
height:36;
margin-left:33%;
margin-top:-20%;
display: block;
}
HTML code:
Thanks so much!! Mc.
Add:
a img {
border:none;
}
to your CSS.
By default, images that are hyperlinked automatically get the blue border (like the blue and underline for hyperlinked text.
And the right way is:
Thanks so much !!!