I am trying to center these images in a div, but I haven't been able to do that yet. I have tried text-align, align, and floating clearly doesn't work. I have also tried positioning the table to relative. How would I make this centered at the bottom of the page?
.sidebar2 {
width: 120px;
background: #ffffff;
padding-bottom: 10px;
text-align: center;
}
.sidebar2 table {
position:
}
<div class="sidebar2">
<h4> Sponsored by: </h4>
<!-- each image links to webpage of the sponsor -->
<table>
<tr>
<td>
<a href="http://lhs.liberty.k12.mo.us/T4t" target="_blank"><img src="T4t.jpg" alt="T4t" width="95" height="90"/></a>
</td>
<td>
<a href="http://cerner.com/" target="_blank"><img src="cerner-logo1.jpg" alt=" Cerner" width="95" height="90"/></a>
</td>
<td>
<a href="http://www.pltw.org/" target="_blank"><img src="pltw.jpg" alt="Project Lead The Way" width="95" height="90"/></a>
</td>
<td>
<a href="http://www.jewell.edu/home" target="_blank"><img src="william-jewell-college.jpg" alt="William Jewell College" width="95" height="90"/></a>
</td>
<td>
<a href="http://www.ci.liberty.mo.us/" target="_blank"><img src="liberty.jpg" alt="City of Liberty" width="95" height="90"/></a>
</td>
<td>
<a href="http://www.liberty.k12.mo.us/" target="_blank"><img src="lps-logo.jpg" alt=" Liberty Public Schools" width="95" height="90"/></a>
</td>
<td>
<a href="http://www.libertyhospital.org/" target="_blank"><img src="liberty hospital.jpg" alt="Liberty Hospital" width="95" height="90"/></a>
</td>
</tr>
</table>
</div>