除了button之外、input a div span 也可以做成按钮效果,需要class="btn"
watson726
2014-09-01
1 回答
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
绝大多数便签添加这个属性都可以做成button,但是请注意语义化。
举报
0/150
提交
取消