答案 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
是所有属性的简写。