按钮样式的文件选择框

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>选择文件</title>
    <style>
        .file {
          position: relative;
          display: inline-block;
          background: #55C4F2;
          border:none;
          border-radius: 4px;
          padding: 4px 12px;
          overflow: hidden;
          color: #1E88C7;
          text-decoration: none;
          text-indent: 0;
          line-height: 20px;
        }
        .file .upfile {
          position: absolute;
          font-size: 100px;
          right: 0;
          top: 0;
          opacity: 0;
        }
        #upfile{
          color: #ffffff;
          background: #55C4F2;
          border: none;
        }
        #upfile:hover{
          background: #AADFFD;
        }
    </style>
  </head>
  <body>
    <a class="file">
        <input type="file" name="" onchange="upfile.value=this.value" class="upfile">
        <input value="未选择任何文件" type="button" name="upfile" id="upfile">
    </a>
  </body>
</html>

 

posted @ 2016-07-08 15:57  小蛋壳12  阅读(162)  评论(0)    收藏  举报