I am trying to use multiple background images to customise an input box but for some reason the background image doesn't work.
What I am trying to achieve is this:
The multiple background images are:
Any help is highly appreciated.
.login-block input#username {
background: #2b2e30 url('https://s27.postimg.org/izumvqjr7/login_input_bg.jpg') 100% 41px no-repeat, url('https://s29.postimg.org/qdrqvmr0n/user_login_icon.png') left 10px no-repeat;
background-size: 100% 41px;
background-position: left top;
}
.login-block input {
border: medium none;
box-sizing: border-box;
color: #9c9b9b;
display: block;
font-size: 14px;
height: 41px !important;
margin-bottom: 20px;
padding: 0 20px 0 50px;
width: 100%;
}
<div class="login-block">
<input value="" placeholder="Username" id="username" type="text">
</div>


