我在这里再问:)
我需要有两种类型的按钮,一种使用“输入按钮”,另一种使用标签“a”链接。
但是当尝试这样做时,使用标签“a”的“按钮”比其他标签低,而且我无法让它保持在其他按钮的同一行。
我把这个例子放在jsFiddle中:
http://jsfiddle.net/mtsys/RLgEj/
<br><br><br>
<input name="btnSubmit" class="botao salvar" type="submit" value="Salvar" />
<input name="btnSubmit" class="botao excluir" type="submit" value="Excluir" />
<input name="btnSubmit" class="botao voltar" type="submit" value="Voltar" />
<a class="botao voltar" href="/Produto/Index">Voltar </a>
TKS
答案 0 :(得分:0)
试试这个
.botao {
vertical-align: middle;
}
a.botao {
padding-top: 7px;
height: 24px !important;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
将此添加到您的css(最后一条规则):
.botao {
background-color:#fff;
border-radius:6px;
border:1px solid #87a5b6;
display:inline-block;
color:#000;
font-family:Verdana;
font-size:12px;
font-weight:bold;
padding-left:32px;
padding-right :16px;
text-decoration:none;
cursor:pointer;
height:32px;
line-height: 32px;/* this is the magic */
}
我更新了Fiddle