0
When you focus on your text field:
you use the pseudo class :focus
to remove the background-image
of your input
Declare in your css:
input[type='text']:focus {
background-image: none;
}
0
3
When you focus on your text field:
you use the pseudo class :focus
to remove the background-image
of your input
Declare in your css:
input[type='text']:focus {
background-image: none;
}
Thank you, it worked out buddy.
Good! settled down .. mark as response. Hug!
I don’t know how you do it is the first time I’m wearing it. rs
0
Something like:
<i class="icon ion-search placeholder-icon"></i>
<input type="text" size="100" ng-model="q" placeholder="Procurar" onclose="fechaTeclado();" />
Where the <i>
you place the icon you want.
Thanks a friend for the help.
Thanks a friend for the help.
Browser other questions tagged html css front-end webdesign
You are not signed in. Login or sign up in order to post.
Try using something like: <i class="icon ion-search placeholder-icon"></i>
– Ramos