Home > database >  background color for submit button
background color for submit button

Time:08-22

i am trying to change the background of this submit button: safari Default button

but when I use background-color: #FFFF55

it looks like this

bg color submit button

i am aware that I can set the webkit command to 'none' but I want to keep it but just make it yellow. (I know it's ugly I'm just practicing)

thanks in advance

CodePudding user response:

If you want imitate that button you can set border: none; border-radius: 5px; (try different number of pixels to your taste)

CodePudding user response:

HTML default button has borders. so just set border: none; or style borders however you want.

Is this what you want?

  • Related