在所有浏览器中使输入按钮看起来完全相同,可以通过以下方法实现:
input[type="button"] {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
outline: none;
box-shadow: none;
border: 1px solid #ccc;
background-color: #f8f8f8;
color: #333;
font-size: 14px;
padding: 5px 10px;
cursor: pointer;
}
通过以上方法,可以使输入按钮在所有浏览器中看起来完全相同。
领取专属 10元无门槛券
手把手带您无忧上云