我正在使用 CSS 使输入按钮看起来像一个链接。
我已经这样设计了它:
input#linkLike {
background: none;
border: none;
cursor: pointer;
margin: 0;
padding: 0;
text-decoration: none;
font-weight: bold;
font-size: 12px;
display: inline;
vertical-align: baseline;
}
这在 Chrome 中运行良好,但在 Ff 中的按钮周围有一个空格,在 IE 中有一个更大的空格。
这个空格来自哪里,我该如何删除它?