gpt4 book ai didi

html - 如何设置 html 提交表单的样式?

转载 作者:行者123 更新时间:2023-11-28 15:54:19 26 4
gpt4 key购买 nike

这是我的文件上传表单

<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="filetoupload" id="filetoupload" onchange="this.form.submit();">
</form>

它制作了一个“选择文件”按钮来选择要上传的文件,但是如何在 css 中设置此按钮的样式,如更改颜色、大小、位置和字体?

我已经尝试过 input[type=submit] {} 但似乎不起作用

此外,如何将按钮上的文字从“选择文件”更改为“上传”?

最佳答案

类型是file,不是submit,如type="file"所示:

input[type=file] {
/* styles here */
}

但是,为按钮设计样式很复杂。如 this answer 中所述,您必须将实际的输入字段移出 View ,然后添加一个具有您自己样式的按钮。

关于html - 如何设置 html 提交表单的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27576551/

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