mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +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;
|
||
|
}
|