I have anchors that are separated by | . This is all wrapped in a div.linksWrapper. In IE9 any text (in this case | ) that is a direct descendant of div.linksWrapper is offset from the center of the other elements. In all other browsers | renders aligned with the anchors.
See image below...

html
<div class="instagramViewerWrapper">
<div class="linksWrapper">
<a class="active" href="#">VIEW ALL</a> |
<a id="40020931" href="#" class="">KATHERINE</a> |
<a id="40027696" href="#" class="">MELISSA</a> |
<a id="42768724" href="#">MICHELE</a> |
<a id="42764826" href="#">CAILEE</a> |
<a id="42767242" href="#">CHRISTIE</a> |
<a id="42763829" href="#">JAMIE</a></div>
<div class="grid" id="instagramViewer">...</div>
</div>
css
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
background: none repeat scroll 0 0 transparent;
border: 0 none;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
vertical-align: baseline;
}
.instagramViewerWrapper {
color: #888888;
margin-top: 30px;
min-height: 1040px;
}
.instagramViewerWrapper .linksWrapper {
position: relative;
text-align: center;
}
.instagramViewerWrapper .linksWrapper a {
color: #888888;
display: inline-block;
padding-bottom: 5px;
}