There are three different implementations: pseudo-elements, pseudo-classes, and nothing.
The discussion about the best implementation is still going on. Note the pseudo-elements act like real elements in the Shadow DOM. A
So we need separate rules for each browser. Otherwise the whole group would be ignored by all browsers.
- WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element:
::-webkit-input-placeholder
. - Mozilla Firefox 4 to 18 is using a pseudo-class:
:-moz-placeholder
(one colon). - Mozilla Firefox 19+ is using a pseudo-element:
::-moz-placeholder
, but the old selector will still work for a while. - Internet Explorer 10 and 11 are using a pseudo-class:
:-ms-input-placeholder
.
placeholder
attribute at all, while Opera 12 and lower do not support any CSS selector for placeholders.The discussion about the best implementation is still going on. Note the pseudo-elements act like real elements in the Shadow DOM. A
padding
on an input
will not get the same background color as the pseudo-element.So we need separate rules for each browser. Otherwise the whole group would be ignored by all browsers.
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #909;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #909;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #909;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #909;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: #909;
}
<input placeholder="php999 is great!">
It is very useful material Thanks for sharing..
ReplyDeletevery interesting and helpful
Read More at php training in Chandigarh