背景图像未显示在输入框中

时间:2016-10-04 13:10:28

标签: html css

我不知道为什么这不起作用。我已经看过了,找不到任何解决方案。

LIVE HERE

横幅中的两个输入框附有背景图像但未显示。

1 个答案:

答案 0 :(得分:1)

background: transparent;更改为background-color: transparent;

<强>阐释:

.jobs-inp {
    background-image: url(images/magnify-icon.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-left: 15px;
    background: transparent;
    font-size: 18px;
    font-family: Interstate-Regular;
    color: white;
    border: 1px solid white;
    height: 40px;
    width: 25%;
}

background: transparent;之前会覆盖所有背景属性,因为background是所有属性的简写。