I tried to search the internet, but I saw nothing. My problem is very easy, I have 2 icons and want one of them to be aligned to the left and the other on to the right. The code follows:
<div class="container">
<div class="row">
<div style="cursor: pointer" onclick="window.history.back()">
<div class="back-button" data-wow-delay="0.2s" style="padding: 0 0 0 25px">
<div class="icon color-1" style="margin-bottom: 0">
<i class="lni-pointer-left"></i>
</div>
</div>
</div>
<div style="cursor: pointer" onclick="window.history.back()">
<div class="back-button" data-wow-delay="0.2s" style="padding: 0 0 0 25px">
<div class="icon color-1" style="margin-bottom: 0">
<i class="lni-pointer-left"></i>
</div>
</div>
</div>
</div>
</div>
P.S.: Float: right didn't help...