We are in the process of creating a web application using Bootstrap Studio for the frontend. One issue we are facing is that when the window is resized, the icons start overlapping each other. Is there a way to make one icon go under the other?
https://i.sstatic.net/MyfjS.gif
Below is the code and CSS with some logos:
.hibernateLogo,
.sslLogo {
top: 60%;
position: absolute
}
.hibernateLogo {
left: 27%
}
.sslLogo {
left: 83%
}
.pgLogo {
position: absolute;
top: 62%;
left: 66%
}
<div class="login-dark" style="background-image: url(" assets/img/tlo2.jpg ");margin-right:0px;height:1200px;">
<img class="logo" style="width: 300px; background-position: center; height: 100px;" src="assets/img/Logo VLEX remake trans.png">
<div class="container">
<img class="bootstrapLogo" style="width: 255px;" src="assets/img/tech-bootstrap.png"> <img class="springLogo" style="width: 195px; height: 117px;" src="assets/img/1496434852936.png"> <img class="sslLogo" style="width: 172px;" src="assets/img/ssl-encryption-icon-png-6.png">
<img class="pgLogo" style="width: 235px;" src="assets/img/pg.png">
<img class="hibernateLogo" style="width: 266px; height: 82px;" src="assets/img/Hibernate_logo_a.png"> <img class="javaLogo" style="width: 130px;" src="assets/img/Java_logo_icon.png">
</div>
<form method="post">
</div>