mirror of
https://github.com/servo/servo.git
synced 2025-07-01 12:33:40 +01:00
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>
|