number-placeholder.html (312B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 input { 7 width: 15em; 8 } 9 10 input[type=number]::placeholder { 11 color: blue; 12 opacity: 1.0; 13 } 14 15 input[type=number]::-moz-placeholder { 16 font-style: italic; 17 opacity: 1.0; 18 } 19 </style> 20 </head> 21 <body> 22 <input type="number" placeholder="123"> 23 </body> 24 </html>