有没有办法关闭这个功能?的内容<button>
始终垂直居中,这与常规 HTML 标记中发生的情况相反。
演示:http: //jsfiddle.net/HbqnR/
我想<button>
表现得像<a>
,文本在按钮的左上角。
我正在寻找特定于 WebKit 的修复程序,也许有一些-webkit-*
css 属性可以控制这种行为。黑客是受欢迎的,但不使用额外的标记!
先感谢您 :)
.button
{
display:inline-block;
height:200px;
border:4px gainsboro outset;
background:silver;
vertical-align:middle;
padding:20px;
box-sizing:border-box;
text-decoration:none;
width:200px;
text-align:left;
}
<button class="button"><button></button>
<a href="http://www.google.com" class="button"><a></a>