css input file 美化
html代码
<div class="file-container"> <input type="file" name="img"> </div>
css 代码
.file-container { position: relative; width: 7rem; height: 6rem; background: url('../common/images/ui/组1.png') center center no-repeat; background-size: 100%; } .file-container input { position: absolute; display: block; width: 100%; height: 100%; right: 0; top: 0; opacity: 0; }
input 撑满父容器,透明度设置为0,就可以随意设置父元素样式了。
效果:
相关推荐
huha 2020-10-16
TLROJE 2020-10-26
echoes 2020-08-20
nercon 2020-08-01
zhanghaibing00 2020-06-28
Aveiox 2020-06-25
henryzhihua 2020-06-21
zhoutaifeng 2020-06-17
liangzhouqu 2020-06-16
TONIYH 2020-06-11
开心就好 2020-06-10
x青年欢乐多 2020-06-06
KyrieHe 2020-06-03
bertzhang 2020-06-02
haokele 2020-05-29
niehanmin 2020-05-28
davidliu00 2020-05-26