Hallo,
ich möchte ein Bild als Hintergrund eines Buttons ohne einen Rand hinbekommen.
Mit einer Farbe funktioniert es immer nur wenn ich ein Bild in den Hintergrund stelle habe ich einen grauen Button rand an der Seite. Wie bekomme ich diesen weck ?
Mein Ergebnis sieht so aus:
http://julian-jour.tipido.net/gutefrage/facebook.png
Mein css Code ist :
.facebook {
box-shadow:0px -4px 5px #000;
width: 110px;
height: 31px;
margin:30px 30px 40px;
position:absolute;
text-decoration: none;
padding: 9px 6px;
font-family: Arial;
color: #BCBCBC;
font-size: 13px;
top: 0px;
background: white url('../Menuleiste.jpg') no-repeat top;
-webkit-transition: all 0.5s ease-in-out 0s; /* Safari und Chrome: */
-moz-transition: all 0.5s ease-in-out 0s; /* Firefox */
-o-otransition: all 0.5s ease-in-out 0s; /* Opera: */
-ms-transition: all 0.5s ease-in-out 0s; /* IE9 */
transition: all 0.5s ease-in-out 0s;
}
Mein Code für den Body ist :