我使用以下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>
我得到不同的按钮高点。其他样式还可以(文本、颜色等)
如所见,两者都在同一个表中,因此两者之间不应该有任何"隐藏"代码。
问候
阿尔瓦罗
将其从 <input>
更改为 <button>
并将-webkit-appearance: none;
添加到.button
css 的开头,您也可以将height : 30px
添加到 CSS 中
.button{
-webkit-appearance: none;
height: 30px;
/* the rest of your css */
...
}