My goal is to align three divs within a custom MainDiv in order to achieve the desired layout shown here: https://i.sstatic.net/5kDsW.png
<div style="position: fixed; width:100%; height: 12%; left:0%; top: 0%; background: black">
<div style="color: white; left: 5%; margin-top: 5%; position: fixed; font-size: 10px">INFORMATION A</div>
<div style="color: white; margin:0 auto; margin-top: 5%; display: table; font-size: 10px">INFORMATION B</div>
<div style="color: white; right: 5%; margin-top: 5%; position: fixed; font-size: 10px">INFORMATION C</div>
</div>
Unfortunately, the current code I have doesn't seem to be working as intended, resulting in this output: https://i.sstatic.net/bLeX2.png
What steps can I take to troubleshoot and fix this issue?