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
}
Comments (1)
How to set text color in submit button?