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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -