css set input placeholder code example
Example 1: input placeholder css
::placeholder {
color: red;
}
Example 2: change input placeholder text css
#text2::-webkit-input-placeholder::before {
color:#666;
content:"Line 1\A Line 2\A Line 3\A";
}