Custom Upload Button

前端 未结 8 1177
盖世英雄少女心
盖世英雄少女心 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:19

    I'm too late to answer but someone surely will find this useful in future, no need to use of Javascript or Hidden field too. If you are using Bootstrap then definitely there's no need of btn CSS as well.

    #upload_file 
    {
        display: none;
    }
    
    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
        color: #fff;
    }
    
    .btn {
        -moz-user-select: none;
        border: 1px solid transparent;
        border-radius: 0.25rem;
        display: inline-block;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        padding: 0.375rem 0.75rem;
        text-align: center;
        transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
        vertical-align: middle;
        white-space: nowrap;
    }
    
    

提交回复
热议问题