How do I delete the "shadow" from the focus of a button / button?

5

After clicking on the button it has a shadow effect (blue) around it ... I leave an image for you to understand my doubt.

How to remove this outside line?

    
asked by anonymous 10.07.2014 / 04:20

1 answer

3

The button stays focused.

Use CSS:

*:focus{
    outline:0;
}
    
10.07.2014 / 04:47