“Ändern Sie Eingabe -Platzhaltertext CSS” Code-Antworten

CSS -Platzhalterfarbe

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
:-moz-placeholder { /* Firefox 18- */
  color: pink;
}
Drab Dragonfly

Platzhalterfarbe in CSS

/* do not group these rules */
*::-webkit-input-placeholder {
    color: red;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: red;
    opacity: 1;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: red;
    opacity: 1;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: red;
}
*::-ms-input-placeholder {
    /* Microsoft Edge */
    color: red;
}
*::placeholder {
    /* modern browser */
    color: red;
}
0xC0DE:CAFE

Ändern Sie Eingabe -Platzhaltertext CSS

#text2::-webkit-input-placeholder::before {
    color:#666;
    content:"Line 1\A Line 2\A Line 3\A";
}
DevLorenzo

Ähnliche Antworten wie “Ändern Sie Eingabe -Platzhaltertext CSS”

Fragen ähnlich wie “Ändern Sie Eingabe -Platzhaltertext CSS”

Weitere verwandte Antworten zu “Ändern Sie Eingabe -Platzhaltertext CSS” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen