以前做项目时用button
写按钮样式,发现跟a
标签写的按钮样式存在差异。
于是制作了一个demo如下图:
代码:
<a href="">a标签</a>
<input type="button" value="input标签">
<button>button标签</button>
a, input, button {
display: block;
margin: 0;
padding: 0;
width: auto;
height: 80px;
line-height: 80px;
background: #ff9c40;
color: #fff;
border: none;
box-sizing: content-box;
outline: none;
text-decoration: none;
align-items: stretch;
user-select: none;
white-space: pre;
-webkit-touch-callout: none;
-webkit-appearance: none;
}
奇怪的事情粗线啦,css
尽可能的重置为一致,表现差异仍然很大。
实际效果的原因,不能指定width
的值;但在设置了display: block
的情况下,width
应该不须设置就表现的一致才合理吧?
请教一下为何会有这些差异,能通过css
让这些标签表现一致吗?
这三个标签有不同的默认样式。如果想表现一致,可以先把input,button 清除默认样式。