IE is choking on the display: table piece of this CSS:
[css]
.button {
display: table;
position: relative;
font-size: 14px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 1px 1px 2px #888;
-webkit-box-shadow: 1px 1px 2px 0px #888;
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, .14);
text-shadow: rgba(0, 0, 0, .31) 0 -1px 1px;
text-align: center;
border: none;
width: auto;
cursor: pointer;
opacity: 1;
line-height: 30px;
margin: 0 0 -10px 0;
}
So perhaps try adding a display: block to the input submit style:
[css]
input[type="button"], input[type="submit"] {
background: #2152a1;
background: -webkit-linear-gradient(top, #2152A1, #043D63);
background: -moz-linear-gradient(top,#2152a1,#043d63);
background: -o-linear-gradient(top,#2152a1,#043d63);
background: -ms-linear-gradient(top,#2152a1,#043d63);
background: linear-gradient(to bottom, #2152a1 0%,#043d63 100%);
color: #fff;
font-size: 14px;
border: 1px solid #fff;
border-radius: 5px;
padding: 10px 40px !important;
text-transform: uppercase;
display: block;
}
Posted 11 years ago on Tuesday March 5, 2013 |
Permalink