Styling an input type=“file” button

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

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

30条回答
  •  醉话见心
    2020-11-21 12:12

    ONLY CSS

    Use this very simple and EASY

    .choose::-webkit-file-upload-button {
      color: white;
      display: inline-block;
      background: #1CB6E0;
      border: none;
      padding: 7px 15px;
      font-weight: 700;
      border-radius: 3px;
      white-space: nowrap;
      cursor: pointer;
      font-size: 10pt;
    }
    
    

提交回复
热议问题