I have a footer that has 3 columns of content. Currently the css is using float:left. I have tried the following but I just cant get it to align vertical and horizontal.
- display block
- display block-inline
- margin: 0 auto
HTML:
<div id="footer">
<div class="column">
<h3>Information</h3>
<ul>
<li><a href="">Delivery Information</a></li>
<li><a href="">Privacy Policy</a></li>
<li><a href="">Terms & Conditions</a></li>
</ul>
</div>
</div>
CSS:
#footer .column {
float:left;
width: 25%;
min-height: 100px;
}