Posts Tagged ‘to’
How to style Form "Input" elements differently depend upon their type
If you want to style your Form "Input" elements depend upon their type="text" or type="input" or type="submit"
You can use this format to style your Form “Input” elements
For “Text” Input Type :
input[type="text"] {
/* Add Style Here */
}
For “Button” Input Type :
input[type="button"] {
/* Add Style Here */
}
For “Submit” Input Type :
input[type="submit"] {
/* Add Style Here */
}

