申请提交时css样式与href不同

时间:2013-09-08 16:00:18

标签: html css styles

我正在使用以下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>

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

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

此致

阿尔瓦罗

1 个答案:

答案 0 :(得分:0)

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

.button{
   -webkit-appearance: none;
   height: 30px;
   /* the rest of your css */
   ...
}