I am working with an HTML list that contains links styled as background images rather than text. The container is 200px tall and I would like the links to be centered inline within the container. Usually, I would use line-height:200px; for text to achieve this effect, but it seems different when dealing with background images. Does anyone have any suggestions on how to tackle this?
If you need a visual explanation of what I'm trying to accomplish, here's a jsfiddle link: http://jsfiddle.net/M4XN4/1/
Thank you in advance!
<div id="container">
<ul class="container">
<li class="linkedin"><a href="#"></a><li>
<li class="twitter"><a href="#"></a><li>
<li class="facebook"><a href="#"></a><li>
</ul>
</div>