Custom Upload Button

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

    Here is an approximation to the button you want with css/html

    html

    
    

    css

    .upload{
        border:0;
        padding:10px 20px;
        -moz-border-radius:10px;
        border-radius:10px;
        background-color:#4488ee;
        color:white;
        font-size:16px;
    }
    

    demo http://jsfiddle.net/gaby/qdX5d/2/

    for rounded corners in pre-IE9 use css3pie

提交回复
热议问题