1368113-1.html (378B)
1 <!DOCTYPE html> 2 <style> 3 input::placeholder { color: red; } 4 input.green::placeholder { color: green; } 5 </style> 6 <input type="number" placeholder="This should be green"> 7 <script> 8 var i = document.querySelector("input"); 9 var s = getComputedStyle(i, "::placeholder"); 10 // Make sure we've computed the old color. 11 var oldColor = s.color; 12 i.className = "green"; 13 </script>