trying to do best practices here and I'm new to coding. I have two images in a right sidebar. Sidebar looks good (colored it red so I could see what's up) but I can't get the two images centered in a column. What's wrong with my css?
html:
<div class="right_bar">
<div class="sponsor_button"><img src="images/nav_images/uconn-grant-logo.png" alt="Sponsored in part by the University of Connecticut's Research Grant";></div class="sponsor_button">
<div><img src="images/nav_images/usitt.png" alt="Sponsored in part by USITT";>
</div>
</div>
css:
.right_bar {
position:absolute;
right:0;
width: 20%;
background-color: red;
}
.sponsor_button img {
margin-left:auto;
margin-right:auto;
}