0
Well it is as follows, I have the following code, what I intend to put the Divs that are inside the div with id="Goncalo" next to each other in the form of a straight line, that is, I want it to be aligned in the form of a "straight line".
<div id="goncalo">
<div class="preview-wrapper" style="background-image: url('1.png'); background-repeat: no-repeat; width:50px; height:100px; background-size:100%;" data-id="24294275">
</div>
<div class="preview-wrapper" style="background-image: url('2.png'); background-repeat: no-repeat; width:100px; height:100px; background-size:100%;">
</div>
</div>
But you have to equalize the height of the two images ?
– Wilson Santos
Exactly. All the same next to each other.
– Gonçalo
Add the following line in CSS: #Goncalo > div { float:left;}
– Wilson Santos
It doesn’t work! I’ve tried
– Gonçalo