I'm so sorry about the dumb question, but i've been stuck on the same problem for 4+ hours with creating three columns side by side in the center of the page. I've tried margin auto, using position absolute but I cant get them center.
It literally making me want to pull out my hair and i've tried formatting it in 50 different ways.
#IARA {
width: px margin:0 auto;
}
body {
margin: 0 padding:0px;
}
#IARAlogo {
margin-top: 10px;
margin-right: 10px;
pointer-events: none;
float: right;
}
#checkout {
margin-top: 10px;
margin-left: 10px;
float: left;
pointer-events: none;
}
.CLEARTOPBAR {
clear: both;
display: block;
margin: auto;
}
#leftpanel {
background-color: orange;
width: 20%;
height: 50%;
padding: 25px;
}
#Middlepanel {
background-color: blue;
width: 35%;
height: 50%;
padding: 25px;
}
#Rightpanel {
background-color: pink;
width: 20%;
height: 50%;
padding: 25px;
}
<div id="IARA">
<img id="IARAlogo" src="iaraplaceholder.png" style="width:50px;height:40px;" draggable="false" unselectable: "on">
<img id="checkout" src="IARAcheckout.jpg" style="width:70px;height:60px;" draggable="false" unselectable: "on">
</div>
<div class="CLEARTOPBAR">
<div id="Leftpanel">
</div>
<div id="Middlepanel">
</div>
<div id="Rightpanel">
</div>
</div>