Having some issues with border radius in IE-9.
The left border is showing white pixels. Any thoughts on why?
This problem is only in IE 9, other browsers look fine.
Here is the code snippet:
<ul class="tags clearfix">
<li>
<a href="javascript:void(0)">Tag One</a>
</li>
<li>
<a href="javascript:void(0)">Another tag</a>
</li>
</ul><!-- tags -->
This is the CSS style:
#article_sidebar ul.tags li {
background: #000000;
list-style: none;
float: left;
margin-right: 4px;
padding: 0px 18px 0px 19px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
line-height: 20px;
margin-bottom: 4px;
}