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?
try this:
input { background-image: url("icon.png"); background-position: right top; background-repeat: no-repeat; background-size: contain; }