0

入力があります:

<input type="submit" id="SomeId" value="Search" class="mc-button mc-button-orange" />

スタイル:

.mc-button-orange {
border: solid #A26F19;
border-image: initial;
background: -webkit-linear-gradient(top, #F2BD65, #CB891E);
}

.mc-button {
min-width: 10px;
line-height: 24px;
height: 24px;
padding: 0 28px;
padding-top: 2px;
text-align: center;
-moz-transition: all 0.218s ease 0s;
-moz-user-select: none;
background: #1B7BCB;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6AC3EB), to(#1B7BCB));
background: -webkit-linear-gradient(#6AC3EB, #1B7BCB);
background: -moz-linear-gradient(#6AC3EB, #1B7BCB);
background: -ms-linear-gradient(#6AC3EB, #1B7BCB);
background: -o-linear-gradient(#6AC3EB, #1B7BCB);
background: linear-gradient(#6AC3EB, #1B7BCB);
color: white;
display: table;
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-moz-outline-radius: 10px;
border-radius: 10px;
border: 0px solid #0076A3;
border-bottom: 1px solid #1564A5;
overflow: visible;
cursor: pointer;
clear: none;
float: left;
}

丸みを帯びた角は図書館PIEによって作られています。

IE8では\IE9は入力ワード「検索」内に表示されません。

問題を解決する方法を教えてください。

今後、これらのクラスのPIEを無効にすると、タグは役に立ちません。

GoogleTranslateによって翻訳されました。

4

1 に答える 1

2

削除するdisplay: table;とこの問題が解決します

于 2012-10-14T14:48:58.017 に答える