HTML CSS examples for HTML Tag:input placeholder
Center align placeholder in input text box
<html> <head> <style> input::-webkit-input-placeholder { text-align:center; } </style> <!-- w w w . ja v a2s .com--> </head> <body> <input type="text" placeholder="asdf"> </body> </html>