I'm striving to replicate the layout showcased in this screenshot : https://i.sstatic.net/RBg62.jpg
My attempt involved utilizing columns with bootstrap 4. Initially, the layout appeared intact, but the elements being within a container-fluid caused issues when resizing the window slightly.
Below is the snippet of my code :
.secondary-title {
color: #CABB9D;
font-size: 1.4em;
line-height: 1.9em;
& span {
color: #18161A;
font-family: 'PTSans';
font-weight: bold;
font-size: 2.2em;
}
}
.two-points {
border-top: 10px dotted #C1B89C;
width: 40px;
margin-left: 0;
margin-top: 0;
}
.cf-square-pic {
& .bloc-title {
width: 445px;
margin: 50px 0 110px 20px;
}
& .photo-4 {
margin-top: 50px;
}
}
<div class="container-fluid cf-square-pic px-0">
<div class="row no-gutters">
<div class="col-lg-7">
<img src="/assets/img/photo/photo-1.jpg" alt="" class="d-block w-100 photo-1">
</div>
<div class="col-lg-5">
<div class="bloc-title px-3">
<h2 class="secondary-title mb-1">
<span>LOREM IPSUM DOLOR</span>
</h2>
<hr class="two-points" />
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nec purus urna. Pellentesque varius facilisis tellus nec ullamcorper. Ut sit amet vulputate mauris.
</p>
</div>
<img src="/assets/img/photo/photo-4.jpg" alt="" class="d-block w-100 photo-4">
</div>
<div class="col-lg-5">
<img src="/assets/img/photo/photo-2.jpg" alt="" class="d-block w-100 photo-2">
</div>
<div class="col-lg-7">
<img src="/assets/img/photo/photo-3.jpg" alt="" class="d-block w-100 photo-3">
</div>
</div>
</div>
Any suggestions on how I can position the last image at the bottom left beneath the top left image, without disrupting the layout upon resizing?
Your assistance is greatly appreciated!