I have a website design that includes text input fields that look like this:
Input Field http://img401.imageshack.us/img401/4453/picture1ts2.png
I\'m wondering w
The easiest way to get rid of the overflow without JavaScript is simple:
HTML Assuming the image height is 60px, the width of the first and third span is 30px,
nbsp;
nbsp;
CSS
span#first{background:url('firstimage') no-repeat; height:60px; width:30px;}
span#third{background:url('thirdimage') no-repeat; height:60px; width:30px;}
span#second input{background:url('second image') repeat-x; height:60px;}
That should resolve your issue.