Custom Upload Button

前端 未结 8 1183
盖世英雄少女心
盖世英雄少女心 2020-11-28 10:40

hi i was just wondering how you can create you own custom file upload button, because the best i can do is

\"en

8条回答
  •  天涯浪人
    2020-11-28 11:29

    I think you can also try doing it this way:
    Creating an additional element which you can style easily with CSS

    like

    .container {
      position: relative;
    }
    .uploadButton {
      height: 25px;
      width: 66px;
      display: block;
      cursor: pointer;
      background: url('http://www.ifunia.com/images/christmas/youtube-upload-button.gif') center center no-repeat;
    }
    input[type="file"] {
      display: block;
      width: 66px;
      height: 25px;
      clip: rect(0px 0px 0px 0px);
      position: absolute;
      left: 0;
      top: 0;
    }

提交回复
热议问题