1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <link rel='stylesheet' type='text/css' href='style.css'> <style> [placeholder="bar"]::-moz-placeholder, [placeholder="foo"]::placeholder { opacity: 0.1; } </style> <body> <input placeholder='foo'> <input placeholder='bar'> </body> </html>