Klein0r
Erfahrenes Mitglied
Hallo zusammen,
ich möchte ein ganzes DIV als Link blegen. Soweit auch ganz okay...
Nun folgendes hab ich schon gelesen:
http://www.tutorials.de/forum/css/249032-gesamtes-div-mit-link-belegen.html
Jetz hab ich aber das problem, dass mein DIV, welches der Link werden soll, noch 3 weitere DIVs beinhaltet:
So ist das ganze ja nicht valid.
Hier noch die CSS:
Gibt es dafür eine Lösung?
Weiß gerade echt nich weiter!
lg
ich möchte ein ganzes DIV als Link blegen. Soweit auch ganz okay...
Nun folgendes hab ich schon gelesen:
http://www.tutorials.de/forum/css/249032-gesamtes-div-mit-link-belegen.html
Jetz hab ich aber das problem, dass mein DIV, welches der Link werden soll, noch 3 weitere DIVs beinhaltet:
PHP:
return '
<div class="profil_friendbox">
<a href="profil-'.$this->getNickname().'.'.FILE_EXTENSION.'" class="profil_friendbox">
<div class="clearfix">
<div class="profil_friendbox_profilbild">
<img class="profil_friendbox_profilbild" src="'.$profilimage.'" alt="Profilbild von '.$this->getNickname().'" />
</div>
<div class="profil_friendbox_profiltext">
'.$this->getVorname().' '.$this->getName().'<br />
'.$this->getPlz().' '.$this->getOrt().'
</div>
<div class="profil_friendbox_rechtstext">
'.$this->getZuletztonline().'
</div>
</div>
</a>
</div>
';
Hier noch die CSS:
CSS:
div.profil_friendbox {
border : 1px #444444 solid;
padding : 3px;
}
a.profil_friendbox {
display : block;
}
div.profil_friendbox:hover {
border : 1px #d32727 solid;
}
div.profil_friendbox_profilbild {
float : left;
width : 40px;
}
img.profil_friendbox_profilbild {
width : 40px;
}
div.profil_friendbox_profiltext {
float : left;
padding-left : 5px;
}
div.profil_friendbox_rechtstext {
float : right;
padding-right : 5px;
text-align : right;
color : #444444;
}
Gibt es dafür eine Lösung?
Weiß gerade echt nich weiter!
lg
Zuletzt bearbeitet: