Result Size: 625 x 664
x
 
<!DOCTYPE html>
<html>
<head>
<style>
::-ms-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>