Styling an input type=“file” button

后端 未结 30 1732
终归单人心
终归单人心 2020-11-21 11:50

How do you style an input type=\"file\" button?

30条回答
  •  星月不相逢
    2020-11-21 11:56

    Put upload file button over your nice button or element and hide it.

    Very simple and will work on any browser

    Styles

    .upload-wrap {
        position: relative;
    }
    
    .upload-btn {
        position: absolute;
        left: 0;
        opacity: 0;
    }
    

提交回复
热议问题