How to set text color in submit button?
To set text color in submit button , you can use the CSS color property.
Syntax #
color:red
Suppose we have the following submit button and we want to change its text colour .
<style> input{ color:green } </style> <input type="submit" value='Submit Form'>
You can give a class or id to the submit button to select it after.
If you have only one submit button, you can use the below selector to change the button's colour.
input[type="submit"]{ color:green }
save
listen
AI Answer
How to set text color in submit button?
1
To set text color in submit button , you can use the CSS color property. Syntax # color: red …
asked
Apu
1 answers
2915
To set text color in submit button , you can use the CSS color property. Syntax # color: red …
Answer Link
answered
Apu