Answers for "change color of text input area css"

CSS
0

How to change border color of textarea input on :focus

.input:focus {
    outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
  }
Posted by: Guest on September-01-2021
1

css color of input

input{
  background-color: white; /*The color of your choice here*/
}
Posted by: Guest on November-29-2020

Browse Popular Code Answers by Language