1
http://codepen.io/leongaban/pen/IFvEx如何用背景圖像爲背景顏色重新添加背景顏色?
我有一個背景圖像裏面的基本輸入。但是,一旦添加了背景圖像,我就失去了輸入的白色背景顏色。
body {
background: #333;
}
input {
padding: 0 40px;
width: 80%;
height: 50px;
font-family: Arial;
font-size: 24px;
border: 0px;
color: #fff;
background: white;
}
#login-email{
border-bottom: 1px solid #f7f7f7;
background: url('http://leongaban.com/_codepen/ico_email_input.png') no-repeat left center;
//background: white;
}
當我取消了background: white;
行,我失去的背景圖像。在這種情況下,background-image
也不起作用。
的感謝!腦死了星期五8) –
也'背景:白色url('http://leongaban.com/_codepen/ico_email_input.png')不重複左中心;' –
@MarcoRivadeneyra是的!這也起作用,這是一個很好的速記屬性。 –