I am using jquery UI buttons:
$(document).ready(function() {
$("a.button, .button, button, input:submit, input:button").button();
})
<p>
<button type="submit" value="Back">Back</button> <a class="button" id="register">Continue</a>
</p>
In all browsers the buttons looking perfectly the same , but when i check IE7(switched from IE9 to compatibility mode) the Back
button has black border and Continue
button moved a couple of pixels down.
here is jsfiddler link http://jsfiddle.net/XJRVt/7/
I also looked at IETester how it is looking in IE6 and it is looking the same like in IE7 :(
May be someone would know how to fix that?