10 lines
158 B
HTML
10 lines
158 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
input::placeholder {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<form>
|
|
<input placeholder="this text should be red">
|
|
</form>
|