I have an HTML input field like this. I would like to place an image inside the textbox on the right side. Can someone help me out with its CSS for that?
Use background-image and background-position property
DEMO
CSS:
input { height: 70px; width: 200px; background-image:url("http://cloud.ohloh.net/attachments/25869/plone-icon-64_med.png"); background-repeat:no-repeat; background-position: 133px 3px; }