Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Styling Placeholder Text with CSS</title> <style> ::-webkit-input-placeholder { color: orange; } :-moz-placeholder { /* Upto Firefox 18, Deprecated in Firefox 19 */ color: orange; } ::-moz-placeholder { /* Firefox 19+ */ color: orange; } :-ms-input-placeholder { color: orange; } </style> </head> <body> <form> <p><input type="text" placeholder="Please Enter your Name"><p> <p><textarea placeholder="Please Enter your Comment" cols="30"></textarea><p> </form> </body> </html>