Bootstrap- How To Align 5 Images In Different Alignment?
I created a layout for the view and I want to arrange my image in this way below: [![enter image description here][1]][1] I created my alignment and plan to use a row with two colu
Solution 1:
You could do something like this also I also recommend using masonry.
<divclass="container"><divclass="row"><divclass="col-sm"><imgsrc="//via.placeholder.com/350x150"alt=""></div><divclass="col-sm"><imgsrc="//via.placeholder.com/350x150"alt=""></div><divclass="col-sm custom-position"><imgsrc="//via.placeholder.com/350x150"alt=""></div></div><divclass="row align-items-end"><divclass="col col-8"><imgsrc="//via.placeholder.com/700x300"alt=""></div><divclass="col"><imgsrc="//via.placeholder.com/350x150"alt=""></div></div></div>
And the CSS:
.row {
margin-bottom: 30px;
}
*[class*="col"] {
height: 250px;
overflow: hidden;
display: block;
}
.col-8 {
height: 350px;
}
*[class*="col"]img {
width: 100%;
min-height: 100%;
display: block;
object-fit: cover;
}
.custom-position {
position: relative;
bottom: -100px;
}
Note that if you go with this option you should fit images with object-fit
so you could use different sizes.
Post a Comment for "Bootstrap- How To Align 5 Images In Different Alignment?"