How to cancel the border of the button? Want to give the button border another color

insert image description here
The button has its own border by default. If you don’t want the border to be displayed, you can write css like this

border:0;

insert image description here

Want to give the button border a different color?
insert image description here
Re-assign a color to the border.
Border: 1px solid red;

Guess you like

Origin blog.csdn.net/qq_48203828/article/details/128609369