html – bootstrap 4中的自定义输入文件不显示按钮

前端之家收集整理的这篇文章主要介绍了html – bootstrap 4中的自定义输入文件不显示按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在bootstrap 4中使用自定义输入文件时,请不要更改我的输入,也不要显示浏览按钮.

file-browser

  1. <label class="custom-file">
  2. <input type="file" id="Image" class="custom-file-input">
  3. <span class="custom-file-control"></span>
  4. </label>

.custom文件

  1. position: relative;
  2. display: inline-block;
  3. max-width: 100%;
  4. height: 2.5rem;
  5. cursor: pointer;

.custom文件输入

  1. min-width: 14rem;
  2. max-width: 100%;
  3. margin: 0;
  4. filter: alpha(opacity=0);
  5. opacity: 0;

.custom文件控制

  1. position: absolute;
  2. top: 0;
  3. left: 0;
  4. right: 0;
  5. z-index: 5;
  6. height: 2.5rem;
  7. padding: .5rem 1rem;
  8. line-height: 1.5;
  9. color: #555;
  10. user-select: none;
  11. background-color: #fff;
  12. border: 1px solid #ddd;
  13. border-radius: .25rem;

解决方法

据我所检查 – 你需要插入:之前和:之后的伪元素 – 然后它的工作原理.
  1. .custom-file-control:before{
  2. content: "Browse";
  3. }
  4. .custom-file-control:after{
  5. content: "Add files..";
  6. }

http://codepen.io/powaznypowazny/pen/jBqzgR

猜你在找的HTML相关文章