Manuel Pozzoni
Manuel Pozzoni

Reputation: 21

?How to change textarea input color to green?

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

Answers (1)

Greg--
Greg--

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

Related Questions