Answers for "style placeholder textarea css"

CSS
6

textarea placeholder

<!-- Make sure that there is No space and No breaklines between the <textarea></textarea>. Example below: -->
<textarea placeholder="Enter Details..."></textarea>
Posted by: Guest on May-11-2020
1

placeholder text css

input {
  border: 1px solid black;
  padding: 3px;
  height: 300px;
}

input:placeholder-shown {
  border-color: teal;
  color: purple;
  font-style: italic;
}
Posted by: Guest on March-14-2021

Browse Popular Code Answers by Language