I am using upload image file button from element ui which is shown in
Can you help me to edit style of the button? Kind regards
CodePudding user response:
Change it to:
<el-button type="success">Click to upload</el-button>
And also look at the documentation
CodePudding user response:
using bootstrap Click to upload
CodePudding user response:
You just need to use the background-color
property to change the color of your button.
button.your-classname{
background-color: green;
border-color: green;
}