css实现上传按钮

 <meta charset="UTF-8">
    <title>上传按钮</title>
    <style>
        *{
            padding: 0;
            margin: 0;
        }
        .btn{
            width: 100px;
            height: 28px;
            line-height: 28px;
            color: #fff;
            background: #538de3;
            border-radius: 6px;
            margin: 30px auto;
            position: relative;
            text-align: center;
            cursor: pointer;
        }
        .btn input{
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            filter: alpha(opacity=0);
            cursor: pointer;
        }
    </style>
</head>
<body>
<div class="btn">
    <input type="file">上传文件
</div>

 input file上传按钮的美化思路是,先把之前的按钮透明度设置为0,外层包裹div.就实现了美化功能

posted @ 2017-08-18 11:09  千寻的天空之城  阅读(817)  评论(0编辑  收藏  举报