Good! How can I make the second image on the right?
I put a single class for her that is called derecha
but the problem that when float right, the page loses its flow and are piled on top of each other.
I just want the second one, the image on the other side, that is, the red background first and the image on its right.
Greetings.
/*********************************************** PROYECTOS ************************/
.General-Proyectos {
background-color: #e9e9e9;
}
.Proyectos {
height: 800px;
width: 75%;
text-align: justify;
margin: auto;
}
.Individual-Imagenes-Proyectos {
height: 206px;
width: 100%;
background-color: #b00000;
border-radius: 10px;
margin: 20px;
}
.Imagenes-Proyectos img {
height: 200px;
width: auto;
border: solid 3px;
border-color: #b00000;
border-radius: 10px;
transition: opacity 0.3s;
}
.Imagenes-Proyectos img:hover {
opacity: 0.9;
}
.Derecha {
/* ????????????????????????? */
}
<div class="General General-Proyectos">
<div class="Proyectos">
<h2>Mis proyectos</h2>
<div class="Imagenes-Proyectos">
<div class="Individual-Imagenes-Proyectos">
<img src="Img/inLaw.png" alt="inLaw Proyecto">
</div>
<div class="Individual-Imagenes-Proyectos Derecha">
<img src="Img/inLaw.png" alt="inLaw Proyecto">
</div>
<div class="Individual-Imagenes-Proyectos">
<img src="Img/inLaw.png" alt="inLaw Proyecto">
</div>
</div>
</div>
</div>