I am facing a challenge with positioning three divs within one container. I want one to be on the right, another on the left, and the third one at the center, but so far I have not been successful;
<div id="durum3" style="width: 100%; height: calc(100% - 40px);">
<div class="processes" style="width: 100%; height: 40%; max-height: 84px; border-bottom:2px solid #9d7db1; min-height: 64px; min-width: 240px;max-width: 360px">
<div id="firmalar" style="height: 100%; background: red; width: 74px;float: left "></div>
<div id="islemler" style="height: 100%; background: yellow; width: 74px; text-align: center; float: left; margin: 0 auto;"></div>
<div id="pin" style="height: 100%; background: blue; width: 74px; float: right;margin-left: 5px "></div>
</div>
</div>
Any suggestions on how to resolve this issue?