首页 前端知识 网页中 文件上传 input 标签 type=“file“ 设置 中间按钮 button的样式

网页中 文件上传 input 标签 type=“file“ 设置 中间按钮 button的样式

2024-08-04 22:08:56 前端知识 前端哥 994 803 我要收藏

文件上传是网页常用功能

我们一般用以下标签在网页中实现这一功能

<input type="file" id="myfile" />

它的原始显示效果是这样的
在这里插入图片描述
我们尝试设置它的css样式

input#myfile{
    display: block;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    width: 400px;
    height: 34px;
    border-radius: 5px;
    background-color: #f1f1f1;
    padding: 5px;
}

现在再来看显示效果
在这里插入图片描述
可以见到,样式修改成功了.
但有一个问题.中间的按钮怎么设置样式呢,它自己并不是一个独立的按钮啊

这就需要用到css 的 伪类选择器 “::file-selector-button” 了

input#myfile::file-selector-button{
    background-color: #008080;
    color: #FFFFFF;
    border-radius: 3px;
    border: 0px;
    width: 150px;
    height: 32px;
    display: inline-block;
    box-shadow: 3px 3px 10px #555555;
    margin-right: 10px;
}

于是得到显示效果如下
在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/14753.html
标签
评论
发布的文章

RapidJSON介绍

2024-08-14 00:08:38

jQuery 4 beta 震撼发布

2024-08-14 00:08:36

cJSON的使用

2024-08-14 00:08:36

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!