how to format input placeholder text for the Opera browser?

kaboteam

New Member
I have styled placeholder text with CSS using the psuedo elements and pseudo classes below. This gets the job done on all major browsers by Opera. My understanding is Opera does not support styling placeholder text. Does anyone know of a way to style Opera input placeholder text?CSS\[code\]::-webkit-input-placeholder { color: red; font-size: 10px;}::-moz-placeholder { color: red; font-size: 10px;}:-moz-placeholder { color: red; font-size: 10px;}:-ms-input-placeholder { color: red; font-size: 10px;}input:-moz-placeholder { color: red; font-size: 10px;}\[/code\]
 
Back
Top