Shamil89
Shamil89

Reputation: 39

Placeholder centered but input text left?

Would that be possible?

I mean to have a placeholder centered but when I insert a text it will be aligned left???

Upvotes: 1

Views: 740

Answers (1)

knitevision
knitevision

Reputation: 3143

Codepen link

::-webkit-input-placeholder {
   text-align: center;
}

::-webkit-input-placeholder {
   text-align: center;
}

:-moz-placeholder { /* Firefox 18- */
   text-align: center;
}

::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;
}

:-ms-input-placeholder {  
   text-align: center;
}

Upvotes: 3

Related Questions