there are six images, which should be displayed in two lines (Although in reality they are twelve because i use an hover effect). The problem is that the images are not displayed on two lines. Just look good if I put a fixed height. For example 500px. But that creates a problem with the Responsive.
I have tried thousand formulas. Display: block, inline, auto, etc .. But nothing seems to give good results.
Here I leave the simplified code, if someone expert can tell me what that is failing. Thank you!
CSS
<style type="text/css">
html,body {height:100%;
}
.image-grid {
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.image-grid .image {
width: 33%;
padding-left:6px;
padding-left:6px;
}
.image-grid .image img {
width: 100%;
}
#cf {
position:relative;
width:33%;
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
#cf img {
position:absolute;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out;
}
#cf img.top:hover {
opacity:0;
height:350px;
}
</style>
HTML
<body>
<section class="image-grid">
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top" src="wp-content/uploads/2015/12/1_weddings.jpg" /></a>
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="" /></a>
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top"src="wp-content/uploads/2015/12/3_corporative.jpg" alt="" /></a>
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top" src="wp-content/uploads/2015/12/4_documentals.jpg" alt="" /></a>
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top" src="wp-content/uploads/2015/12/5_originals.jpg" alt="" /></a>
<a id="cf" href="#" class="image">
<img class="bottom" src="wp-content/uploads/2015/12/2_events-bona.jpg" alt="weddings" title="weddings" />
<img class="top" src="wp-content/uploads/2015/12/6_freelancers.jpg" alt="" /></a>
</section>