I want an image right before my text input. I'm trying :before with no luck or sign of the image!
<input type="text" class="form-control vrm-input" id="vrm" name="vrm" placeholder="" maxlength="10">
.vrm-input:before {
background: url("http://www.byplug.com/oink.jpg") repeat scroll 0 0 rgba(0, 0, 0, 0);
content: " ";
height: 112px;
left: -61px;
position: absolute;
top: 10px;
width: 61px;
z-index: 100;
}
I'm sure it's simple. Thanks!