input[type=file] 样式美化,input上传按钮美化
Posted l-zl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input[type=file] 样式美化,input上传按钮美化相关的知识,希望对你有一定的参考价值。
<style>
.file {
position: relative;
display: inline-block;
background: #D0EEFF;
border: 1px solid #99D3F5;
border-radius: 4px;
padding: 4px 12px;
overflow: hidden;
color: #1E88C7;
text-decoration: none;
text-indent: 0;
line-height: 20px;
}
.file input {
position: absolute;
font-size: 100px;
right: 0;
top: 0;
opacity: 0;
}
.file:hover {
background: #AADFFD;
border-color: #78C3F3;
color: #004974;
text-decoration: none;
}
</style>
<div class="file">选择文件
<input type="file" name="" id="">
<button type="submit">上传</button>
</div>
以上是关于input[type=file] 样式美化,input上传按钮美化的主要内容,如果未能解决你的问题,请参考以下文章
input[type=file] 样式美化,input上传按钮美化
input[type=file] 样式美化,input上传按钮美化