Answers for "html input css styles"

CSS
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
1

form css

#form {

    border: 1px solid black;
    padding: 1.5%;
    text-align: center;
    

}
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language