0

我正在使用以下 css 来格式化 php 页面中的按钮:

.button {
    display: inline-block;
    zoom: 1; /* zoom and *display = ie7 hack for display:inline-block*/
    *display: block;
    vertical-align: baseline;
    margin: 0 2px;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 14px/100% Verdana, Arial, Helvetica, sans-serif;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em !important;
    -moz-border-radius: .5em !important;
    border-radius: .5em !important;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2) !important;
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.60);
}

如果我确实像这样应用这个类:

<tr>
  <td>
    <a class=\"button\" href=\"fr_right.php?op=extendida\">
      << Regresar 
    </a>
  </td>
  <td></td>
  <td>
    <input type=submit class=\"button\" value=\"Guardar Cambios\">
  </td>
</tr>

我得到不同的按钮高点。其他样式都可以(文字、颜色等)

如图所示,两者都在同一个表中,因此两者之间不应有任何“隐藏”代码。

问候

阿尔瓦罗

4

1 回答 1

0

将其更改<input><button>并添加-webkit-appearance: none;到您的 css 的开头,您.button也可以添加height : 30px到 css

.button{
   -webkit-appearance: none;
   height: 30px;
   /* the rest of your css */
   ...
}
于 2013-09-08T16:08:36.047 回答