<html>
<head>
<style>
::input-placeholder { /* Edge */
color: red;
}
:-ms-input-placeholder { /* Internet Explorer */
color: red;
}
::placeholder {
color: red;
}
</style>
</head>
<body>
<p>Use the ::placeholder selector to change the color of the placeholder text:</p>
<input type="text" name="fname" placeholder="First name">
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss3_placeholder by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:11:41 GMT -->
</html>