我无法更改输入按钮的大小。任何人都可以解释原因吗?
#reset{
width: 200px;
height: 100px;
}

<input id="reset" type="button" value="Reset">
&#13;
答案 0 :(得分:2)
默认情况下,输入元素的样式将基于用户操作系统的主题。您必须使用以下内容覆盖它以删除默认值。
input[type="button"]{
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}