mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
13 lines
177 B
CSS
13 lines
177 B
CSS
input::-ms-input-placeholder {
|
|
color: red;
|
|
}
|
|
input::-moz-placeholder {
|
|
color: red;
|
|
}
|
|
input::-webkit-input-placeholder {
|
|
color: red;
|
|
}
|
|
input::placeholder {
|
|
color: red;
|
|
}
|