Custom Upload Button

前端 未结 8 1123
盖世英雄少女心
盖世英雄少女心 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条回答
  •  -上瘾入骨i
    2020-11-28 11:05

    Step 1. Create a simple html markup

    Upload

    Step 2. CSS: Tricky Part

    .fileUpload {
        position: relative;
        overflow: hidden;
        margin: 10px;
    }
    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }
    

    For demo see here http://geniuscarrier.com/how-to-style-a-html-file-upload-button-in-pure-css/

提交回复
热议问题