I try to position the 3 elements in a U shape but for some reason there is a space that separates them
I mean this space
.car {
width: 100px;
position: relative;
height: 50px;
}
.cara {
width: 30px;
height: 15px;
position: absolute;
top: 0;
left: 0;
background-color: black;
}
.Loader {
width: 100px;
height: 20px;
background-color: red;
position: absolute;
bottom: 0;
}
.Back {
width: 10px;
height: 50px;
background-color: red;
position: absolute;
top: 0;
right: 0;
}
<div class="car">
<div class="cara"></div>
<div class="Back">
<div id="topForm"></div>
<div id="bottomForm"></div>
</div>
<div class="pala">
</div>
<div class="Loader">
</div>
</div>