I have such simple form in html:
<form action="add" method="get">
<input name="ok" type="submit" value="ok" class="btn" />
<a class="btn" href="ok">ef</a>
</form>
And I Have such css:
.btn {
font-family: Arial, Tahoma, Verdana, sans-serif;
font-size: 14px;
font-weight: bold;
text-shadow: 0 -1px rgba(127, 127, 127, 0.5);
text-decoration: none;
line-height: normal;
text-align: center;
cursor: pointer;
display: inline-block;
/*padding: 5px 12px;*/
color: #fff;
border-bottom: 1px solid #EEE;
outline: none;
border: none;
background-repeat: no-repeat;
background: -o-linear-gradient(top, #3BA5C8, #2A829E);
background: -moz-linear-gradient(top, #3BA5C8, #2A829E);
background: -webkit-linear-gradient(left top, left bottom, #3BA5C8, #2A829E);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3BA5C8', endColorstr='#2A829E');
}
But what's wrong? in firefox and ie 7 a get that tegs: a and input(submit) a different by height, sumbit is bigger, a is smaller. Help me please.
See http://jsfiddle.net/TxQpN/14/ works ie FF, but not in IE7