gpt4 book ai didi

javascript - 为图像和视频设置上传按钮的样式

转载 作者:行者123 更新时间:2023-11-28 15:12:47 25 4
gpt4 key购买 nike

我正在尝试按照以下方式设置我的 input 样式:

Example

有没有办法像这样设置 input 的样式?

 <input id="fileupload" class="file-upload" name="media" type="file">

.file-upload {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
opacity: 0;
}

.file-upload-input {
display: none;
}

最佳答案

试试这个

<input id="fileupload" name="media" type="file">
<label for="file" class="file-upload">Choose a file</label>

<style>
#fileupload {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.file-upload {
font-size: 20px;
font-family: sans-serif;
color: #fff;
border-radius: 7px;
padding: 10px 20px;
background: #bd1a59;
}
.file-upload-input {
display: none;
}
</style>

关于javascript - 为图像和视频设置上传按钮的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47964384/

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