美化 input type=file控件

大家都知道input的type=file控件默认样式是不能修改的

可以通过一个小技巧处理下

html:

<a href="javascript:;" class="go_upload">上传游戏安装包
                        <input class="upload_input" type="file" value="上传游戏安装包"/>
                    </a>

css:

.go_upload{
    position: relative;
    display: inline-block;
    background: #3ca4fd;
    padding: 13px 103px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    text-indent: 0;
    line-height: 20px;
}
.upload_input{
    position: absolute;
    font-size: 100px;
    right: 0;
    top: 0;
    opacity: 0;
}

 

posted @ 2016-05-12 10:50  djdliu  阅读(252)  评论(0编辑  收藏  举报