Insert a placeholder text in the middle:
Do you also want to print the text in the middle?
If yes:
.ui-input-search input{
text-align: center;
}
Demo
If No:
::-webkit-input-placeholder {
text-align:center;
}
:-moz-placeholder {
text-align:center;
}
::-moz-placeholder {
text-align:center;
}
:-ms-input-placeholder {
text-align:center;
}
Demo
You can put the icon in the center if you want, however it does not disappear as you type, so I think that doesn't make sense. But if you like:
.ui-input-search:after{
width:18px;
height:18px;
left: 50%;
margin-left: -50px;
}
Demo
source
share