I have a button in my form, and would like to change its default border.
I can't remove the default and add mine, I have both or none
button.boton{
cursor: pointer;
position: relative;
background:red;
border:none; /*delete the default one*/
border: 1px solid blue; /*add my own border */
}
how can I do this?
