Hi Team,
I am overriding button CSS. There are some default actions applying for button like focus, hover.
In some case I need that and in some I don't want that.
I don't want focus action on button how I can disable that by using any css property.
let me know for any solutions..
Thanks
Hello
You need to define a css Example take the button in a container and give some class name to it
Now you can target the button from its container For Example
.btn-Wrapper .btn:focus{
outline:none;border:none;}
same you can do with hover.
I hope this will help