How can i make a submit button colored? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How can i make a submit button colored?

In a form, how can you make the submit button have color green

31st Jul 2020, 10:59 AM
Ezekiel Okebule
Ezekiel Okebule - avatar
2 Answers
+ 6
use this.. <input id="input" type="submit"> <style> #input{ color:blue; background-color:green; } </Style>
31st Jul 2020, 11:08 AM
ANMOL
ANMOL - avatar
+ 5
Hi. I suppose that you are talking about HTML. In that case, i recommend that you review the css tutorial. But this is the way: <input type="submit" style="background-color:green"/>
31st Jul 2020, 11:06 AM
Javier Ballesteros
Javier Ballesteros - avatar