LoginSignup
0
0

input fileにカーソルポインターを追加する

Posted at

問題

inputタグのfileタイプにcssで以下を当ててもカーソルにならない

style.css
cursor: pointer;

解決方法

以下のコードでOK

style.css
input[type=file]::-webkit-file-upload-button { 
  cursor: pointer;
}

参考

以下サイトのコメント部分を参考にした

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0