'Blue Square Box Fill showing when button is clicked

enter image description here

I have created a button and every time I long press it or click on it, a square blue fill is showing, I tried removing it with outline: 0 and -webkit-tap-highlight-color: transparent;, but it didn't work. Here is my code :-

.mybutton:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background: rgba(0, 0, 0, 0.40);
}```


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source