美文网首页工作生活
3. input的file样式的美化

3. input的file样式的美化

作者: chan_it | 来源:发表于2019-07-02 16:26 被阅读0次
  1. label + display:none
<style>
  #file1{
    display: none;
  }
</style>

<body>
  <label><input type="file" name="" id="file1">请选择文件</label>
</body>
  1. 定位 + opacity
<style>
  .file{
    position: relative;
  }
  input{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .file-label{
    color: #999;
  }
  .file:hover .file-label{
    color: #09f;
  }
</style>

<body>
  <div class="file">
    <div class="file-label">请选择文件</div>
    <input type="file" name="" id="file1">
  </div>
</body>

相关文章

网友评论

    本文标题:3. input的file样式的美化

    本文链接:https://www.haomeiwen.com/subject/pscthctx.html