Answers for "css textarea background color"

CSS
3

change background input css

input[type="text"], textarea {

  background-color : #d1d1d1; 

}
Posted by: Guest on February-16-2020
0

css textarea background color transparent

textarea{
    width: 100%;
    color: #FFF;
    background: transparent;
    border: none;
    outline: none;
}
Posted by: Guest on December-09-2020
0

html textarea background text

<textarea rows="5" cols="30" placeholder="enter optional message"></textarea>
Posted by: Guest on September-15-2020

Browse Popular Code Answers by Language