Adding style to file upload button in css

前端 未结 8 1981
不知归路
不知归路 2020-12-01 15:13

I have a text field and button with following css:

JS fiddle link : http://jsfiddle.net/Tdkre/

.submit {
      -moz-box-shadow:inset 0px 1px 0px 0px         


        
8条回答
  •  误落风尘
    2020-12-01 15:41

    Simple Solution: Custom file upload button with css only

    .fileUpload input[type=file]{
                    display:none;
                }
                .btn{
                    background-color:#e3e3e3;
                    color:#333;
                    border:1px solid #e6e6e6;
                    border-radius:3px;
                    padding:6px 12px;
                    font-size:16px;
                }

提交回复
热议问题