gurbelunder
Neues Mitglied
Hallo Leute,
habe in dem Menü meiner Internetseite Bilder als Links in Nutzung.
Siehe hier: EDV-Leipzig - Ihr Computerfachgeschäft in Leipzig
Nun möchte ich das via CSS versuchen, dass meim drübergehen mit der Maus über den Link sich die Bilder verändern. Dafür habe ich gedacht, dass ich zwei Bilder für einen Link habe, eins mit schwarzem Hintergrund und eins mit rotem Hintergrund, und beim drübergehen wechselt das schwarze Bild mit dem roten.
Ist dies möglich, und, wenn ja, wie?
Hier mein CSS - Layout:
habe in dem Menü meiner Internetseite Bilder als Links in Nutzung.
Siehe hier: EDV-Leipzig - Ihr Computerfachgeschäft in Leipzig
Nun möchte ich das via CSS versuchen, dass meim drübergehen mit der Maus über den Link sich die Bilder verändern. Dafür habe ich gedacht, dass ich zwei Bilder für einen Link habe, eins mit schwarzem Hintergrund und eins mit rotem Hintergrund, und beim drübergehen wechselt das schwarze Bild mit dem roten.
Ist dies möglich, und, wenn ja, wie?
Hier mein CSS - Layout:
Code:
a:link { color:white;
text-decoration:none
}
a:visited { color:white;
text-decoration:none
}
a:hover { color:red;
text-decoration:none
}
a:active { color:white;
text-decoration:none
}
a:focus { color:red;
text-decoration:none
}
img.btn { border-left:0px;
border-right:0px;
border-top:0px;
border-bottom:0px;
width:131px;
height:19px
}
.bild { background-color:#636363
}
div.text { font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
font-weight:bold
}
table.taba { table-layout:fixed;
width:18%;
float: left
}
tr.tra { table-layout:fixed;
}
td.tda { table-layout:fixed;
font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
text-align:center;
font-weight:bold
}
table.tabb { table-layout:fixed;
width:82%;
float: right
}
tr.trab { table-layout:fixed;
width:100%;
height:30%
}
td.tdab { table-layout:fixed;
font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
text-align:center;
font-weight:bold;
font-size:200%;
}
td.tabbild { font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
width:7%;
background-image:url(../Bilder/Tux.jpg);
width:61px;
height:100px
}
tr.trbb { table-layout:fixed;
width:100%;
}
td.tdbb { table-layout:fixed;
font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
font-weight:bold
}
tr.w3c { table-layout:fixed;
}
td.w3c { table-layout:fixed;
font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
font-weight:bold
}
td.kontakt { table-layout:fixed;
font-family:Tahoma,sans-serif;
font-style:normal;
font-variant:normal;
color:white;
text-align:center;
font-weight:bold
}