Reputation: 21
I have got this textarea and i wonder if there is a way of changing the input color for this textarea so i can type green text on a black background:
textarea{
background-color: black;
}
<textarea id="htmlCode" class="1111" placeholder="HTML"></textarea>
Upvotes: 0
Views: 399
Reputation: 636
You can change font-color. font-size, font-family.. for placeholder with ::placeholder
pseudo-element documentation
textarea{
background-color: black;
color: green;
}
textarea::placeholder{
color: green;
}
<textarea id="htmlCode" class="1111" placeholder="HTML"></textarea>
Upvotes: 1