<html>
<head>
<style>
::input-placeholder { /* Edge 12-18 */
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>
</html>