Answers for "how to make a stylish text box in html"

CSS
3

change background input css

input[type="text"], textarea {

  background-color : #d1d1d1; 

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

how to write css for input type text

/* For Example, If we want to change css of "text" type
from <input> we do this:*/

input[type=text] {
    /* Your Code Here */ 
}
Posted by: Guest on March-01-2020

Code answers related to "how to make a stylish text box in html"

Browse Popular Code Answers by Language