How to change Bootstrap 3 button onclick css style

when I click the bootstrap button, when I click the mouse button, CSS is applied. This is also visible when the mouse button is held down over the boot button.

I need to change this style, but I cannot find it using the validation element. How can I find which style is applied and how to change it?

+6
source share
2 answers

I had this problem the next week. If you use chrome, open the check item, select the code, right-click, select "Item Item Status", select: focus. This will show you the CSS code you need to change.

+7
source

I had a problem with this until I applied the style to .btn-default:active:focus

+3
source

All Articles