Ich versuche herauszufinden, wie ich meine HTML & CSS zu codieren, um die 3 Screenshots Bilder wie im Screenshot unten ausgerichtet haben.Ausrichten, Floating und Zentrierung von Bildern in Reaktion
Die Idee ist, wenn der Benutzer das Fenster kleiner verkleinert, sollten die Bilder links und rechts in Richtung Zentrum oder enger hinter dem Hauptbild und das Hauptbild immer zentriert bleiben.
Mein Dev-Link: http://leongaban.com/portfolio/athenasweb/
Mein CodePen http://codepen.io/leongaban/pen/AwJFt
Und Tipps oder Richtung wäre Super geschätzt! : D
HTML
<div class="pattern">
<div class="athena_thumbs">
<div class="first">
<img src="../../images/athena1.jpg"/>
</div>
<div class="second">
<img src="../../images/athena2.jpg"/>
</div>
<div class="third">
<img src="../../images/athena3.jpg"/>
</div>
</div>
</div>
CSS
div.inner .pattern {
position: absolute;
width: 100%;
height: 100%;
background-image:url('http://leongaban.com/images/pattern_diagonal_lines.png');
background-repeat: repeat;
z-index:2;
}
.athena_thumbs {
position: absolute;
max-width: 1000px;
margin: 250px auto 0;
}
.athena_thumbs .first {
position: relative;
margin: 0 auto;
float: left;
left: 25%;
right: 25%;
z-index: 3;
}
.athena_thumbs .second {
position: relative;
float: left;
left: 10%;
right: 5%;
z-index: 2;
}
.athena_thumbs .third {
position: relative;
float: left;
right: 10%;
left: 5%;
z-index: 1;
}
Sie rocken dank! : D –