html - How To Right Align Image Inside Input Field? -
how right align jpeg image inside input field?
.input-field { background: #fff url("../images/search.jpg") no-repeat; }
by default, image left aligned.
just add "right"
.input-field { background: #fff url("../images/search.jpg") no-repeat right; }
more informations background position: http://www.w3schools.com/cssref/pr_background-position.asp
Comments
Post a Comment