Answers for "css for all input type"

CSS
23

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
0

how to target input type with css

input[type=text]
Posted by: Guest on January-07-2022

Browse Popular Code Answers by Language