Asp:FileUpload edit “No file selected” message

后端 未结 7 1127
半阙折子戏
半阙折子戏 2021-01-01 04:49

I just need to know if there\'s a way to change the message shown by the Asp:FileUpload when no file as been selected.

7条回答
  •  灰色年华
    2021-01-01 05:17

    http://jsfiddle.net/Lsgbx5ne/1/

    input[type=file]{
      color:transparent;
    }
    input[type=file]:after {
      color: #000;
      content:" Cool!";
    }
    

    Improvements over other solutions:

    • Works for short text
    • Doesn't change the background color
    • Pure css

提交回复
热议问题