css - IE8 and IE9 ignores padding of submit button -
somehow ie8 , ie9 ignoring padding settings submit button. weird thing ie8 , ie9 apply padding regular button
<a class="btn" href="#">foo<a>
but not for
<input type="submit">
how possible? i've read adding overflow:visible doesn't work.
this css i'm using:
display: inline-block; color: #fff; text-decoration: none; background: #74ad38; padding: 10px 20px; -webkit-box-shadow: 0px 6px 0px rgba(99, 148, 48, 1); -moz-box-shadow: 0px 6px 0px rgba(99, 148, 48, 1); box-shadow: 0px 6px 0px rgba(99, 148, 48, 1); border-radius: 5px; border: none; transition: background 0.25s; -moz-transition: background 0.25s; -webkit-transition: background 0.25s; -ms-transition: background 0.25s; -o-transition: background 0.25s;
any appreciated.
Comments
Post a Comment