【问题标题】:There is something in front of the background inside the file button文件按钮里面的背景前面有东西
【发布时间】:2022-01-03 13:11:30
【问题描述】:

我在上传按钮里面放了一张图片,但是边缘有一个小细节。如何防止它出现?

<input type="file" name="imgfile" id="imgupload"  class="small ui left labeled left floated camera" data-toggle="tooltip" data-placement="bottom" title="Add Picture" />

#imgupload {
    background: url('../img/camera.png') no-repeat scroll 0 0 transparent;
    cursor: pointer;
    height: 30px;
    width: 30px;
    font-size: 0px;
    border-radius: 50%;
    border: 0px;
    background-size: 27px 27px;
}

【问题讨论】:

    标签: html css button


    【解决方案1】:

    这是显示的默认文件图标。要删除它,请将其添加到您的 CSS:

    #imgupload::file-selector-button {
      display: none;
    }
    

    【讨论】:

    • 感谢它的工作
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-07-16
    • 1970-01-01
    • 1970-01-01
    • 2015-09-03
    相关资源
    最近更新 更多