Nabend,
ich bin gerade dabei, für meine Seite 5 Buttons anzeigen zu lassen die jeweils eine Verlinkung zu Social Media bzw. Youtube haben. Dazu habe ich noch einen Hover-Effekt gemacht, der soweit funktioniert, jedoch wenn einer der Buttons kleiner wird, rücken die anderen dementsprechend nach.
Ich habe mir mehrere Gedanken dazu gemacht, wie ich das am besten umsetzen könnte, kam aber nicht wirklich drauf (zum Beispiel für jeden Button einen div Container zuzuweisen )...
Weis da jemand vielleicht eine Lösung?
Die Website: http://social.nerdwars.at/
Code
* { padding: 0; margin: 0; } /* Kalibriert alle Positionen auf 0 */
a.yti :hover {
width: 90px;
}
a.gpp :hover {
width: 90px;
}
a.ing :hover {
width: 90px;
}
a.twi :hover {
width: 90px;
}
a.fab :hover {
width: 90px;
}
body{
background-size: 100%;
background-repeat: no-repeat;
background-color: rgb(0,0,0);
}
div {
width: 550px;
margin-right: auto;
margin-left: auto;
margin-top: 37%;
}
Alles anzeigen
HTML
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Nerdwars Social Media</title>
<link href="style.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body background="Nerd_Wars.gif" >
<div>
<a class="yti" href="https://www.youtube.com/NerdWars" target="_blank"/><img src="YouTube.png" style=max-height:100px;></a>
<a class="fab" href="https://www.facebook.com/NerdWarsTV" target="_blank"/><img src="Facebook.png" style=max-height:100px;></a>
<a class="twi" href="https://twitter.com/NerdWarsTV" target="_blank"/><img src="Twitter.png" style=max-height:100px;></a>
<a class="ing" href="https://www.instagram.com/Nerd.Wars/" target="_blank"/><img src="Instagram.png" style=max-height:100px;></a>
<a class="gpp" href="https://plus.google.com/u/0/b/111605038996491309189/106936345399410527766?pageId=111605038996491309189" target="_blank"/><img src="Google+.png" alt="Google Plus" style=max-height:100px; /></a>
</body>
</div>
</html>
<!-- style=background-size:100% style=background-repeat:no-repeat; -->
Alles anzeigen