<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
::placeholder {
color: red;
opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: red;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: red;
}
</style>
</head>
<body>
<p>Change the placeholder color:</p>
<input type="text" placeholder="A red placeholder text..">
</body>
<!-- Mirrored from www.w3schools.com/howto/tryit.asp?filename=tryhow_css_placeholder by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:39:18 GMT -->
</html>