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
この場合も機能しませんでした。