Check out the menu at this link:
http://fiddle.jshell.net/V88c6/8/show/
To view the complete jsfiddle, click here:
Here is the HTML code:
<div id="head_1">
<div class="inner">
<div class="column_0">
LOGO
</div>
<div class="column_1">
<a href="#" class="menu_link">LINK 1</a>
<a href="#" class="menu_link">LINK 2</a>
<a href="#" class="menu_link">LINK 3</a>
<a href="#" class="menu_link">LINK 4</a>
</div>
<div class="column_2">
<span>USER NAME</span> <a href="#" class="menu_link">LOGOUT</a>
</div>
<div class="clearfix"></div>
</div>
</div>
After applying a css reset script, I noticed that the top border of the LOGOUT link on hover is slightly higher than the other links. This issue can be seen in this version of the page:
http://fiddle.jshell.net/V88c6/9/show/
I prefer using the css reset script to ensure consistency across different browsers, but I'm puzzled as to why it's affecting only the LOGOUT link. Any insights into this issue?
Tested on IE7, IE8, Latest Google Chrome, latest Firefox, Latest Opera.