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

文件上传是网页常用功能

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

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

它的原始显示效果是这样的
网页中 文件上传 input 标签 type=“file“ 设置 中间按钮 button的样式_第1张图片
我们尝试设置它的css样式

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

现在再来看显示效果
网页中 文件上传 input 标签 type=“file“ 设置 中间按钮 button的样式_第2张图片
可以见到,样式修改成功了.
但有一个问题.中间的按钮怎么设置样式呢,它自己并不是一个独立的按钮啊

这就需要用到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;
}

于是得到显示效果如下
网页中 文件上传 input 标签 type=“file“ 设置 中间按钮 button的样式_第3张图片

你可能感兴趣的:(css,html,css3)