input上传文件的样式修改

来源:互联网 发布:2016安全软件排名 编辑:程序博客网 时间:2024/05/21 05:22
<!DOCTYPE html><html>  <head>    <meta charset="utf-8">    <title></title>    <style>      * {        margin: 0;        padding: 0;      }      .upload {        display: inline-block;        width: 120px;        height: 60px;        line-height: 60px;        background: #009ad6;        position: relative;        text-align: center;      }      /*input 标签有默认的宽高border,outline*/      .upload> input {        position: absolute;        top: 0;        left: 0;        width: 100%;        height: 100%;        /*透明度为0*/        opacity: 0;        cursor: pointer;      }    </style>  </head>  <body>    <div class="upload">      上传文件      <input type="file">    </div>  </body></html>

原创粉丝点击