+ 3
How can i make a submit button colored?
In a form, how can you make the submit button have color green
2 Respostas
+ 6
use this..
<input id="input" type="submit">
<style>
#input{
color:blue;
background-color:green;
}
</Style>
+ 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"/>