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