gpt4 book ai didi

html - 为什么我的输入按钮不改变高度?

转载 作者:太空宇宙 更新时间:2023-11-04 02:59:16 26 4
gpt4 key购买 nike

我无法更改输入按钮的大小。谁能解释一下为什么?

#reset{
width: 200px;
height: 100px;
}
<input id="reset" type="button" value="Reset">

JSFiddle

最佳答案

默认情况下,输入元素的样式将基于用户操作系统的主题。您必须使用以下内容覆盖它以删除默认值。

input[type="button"]{
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}

fiddle :http://jsfiddle.net/rxa60aj6/1/

关于html - 为什么我的输入按钮不改变高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31601076/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com