Chumscrubber
Neues Mitglied
Hallo zusammen,
ich habe folgendes Anliegen:
Ich möchte in einem DIV zwei Dinge auf einmal:
1. Der Text soll von Links nach rechts unterstrichen werden
2. Das Bild daneben soll wechseln wenn man mit der Maus über das DIV fährt.
Text wird per aktuell per hover von links nach rechts unterstrichen.
Das Bild wechselt aktuell per rollover.
Wie kannich dem DIV klarmachen, dass es den Text unterstreichen und das Bild wechseln soll?
Hier der Quelltext
ich habe folgendes Anliegen:
Ich möchte in einem DIV zwei Dinge auf einmal:
1. Der Text soll von Links nach rechts unterstrichen werden
2. Das Bild daneben soll wechseln wenn man mit der Maus über das DIV fährt.
Text wird per aktuell per hover von links nach rechts unterstrichen.
Das Bild wechselt aktuell per rollover.
Wie kannich dem DIV klarmachen, dass es den Text unterstreichen und das Bild wechseln soll?
Hier der Quelltext
#links{
font-family:'Raleway'; font-size:15px; font-weight:500;
border: 1px; border-style:none;
padding: 5 5 5 5em;
margin-left:11.5em;
margin-right:0.5em;
border-color:black;
left: 509px; top: 211px; width: 255px; height: 110px;
padding:5px 5px 0px 5px;
background-repeat: no-repeat;
width: 260px;
margin: 0 auto 0 auto;
}
.rollover a { display:block;
width:43px;
height:64px;
background-image:url('logo_bw.png');
}
.rollover a:hover { display:block;
width:43px;
height:64px;
background-image:url('logo.png');
}
hover {
text-decoration: none;
position: relative;
color: #5a768a;
}
hover:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
border-bottom: 2px solid #5a768a;
transition: 0.4s;
color: #5a768a;
}
hover:hover:after {
width: 100%;
color: #5a768a;
}
font-family:'Raleway'; font-size:15px; font-weight:500;
border: 1px; border-style:none;
padding: 5 5 5 5em;
margin-left:11.5em;
margin-right:0.5em;
border-color:black;
left: 509px; top: 211px; width: 255px; height: 110px;
padding:5px 5px 0px 5px;
background-repeat: no-repeat;
width: 260px;
margin: 0 auto 0 auto;
}
.rollover a { display:block;
width:43px;
height:64px;
background-image:url('logo_bw.png');
}
.rollover a:hover { display:block;
width:43px;
height:64px;
background-image:url('logo.png');
}
hover {
text-decoration: none;
position: relative;
color: #5a768a;
}
hover:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
border-bottom: 2px solid #5a768a;
transition: 0.4s;
color: #5a768a;
}
hover:hover:after {
width: 100%;
color: #5a768a;
}