1button {
2 background: transparent;
3 box-shadow: 0px 0px 0px transparent;
4 border: 0px solid transparent;
5 text-shadow: 0px 0px 0px transparent;
6}
7
8button:hover {
9 background: transparent;
10 box-shadow: 0px 0px 0px transparent;
11 border: 0px solid transparent;
12 text-shadow: 0px 0px 0px transparent;
13}
14
15button:active {
16 outline: none;
17 border: none;
18}
19
20button:focus {
21 outline: 0;
22}
1button, input[type="submit"], input[type="reset"] {
2 background: none;
3 color: inherit;
4 border: none;
5 padding: 0;
6 font: inherit;
7 cursor: pointer;
8 outline: inherit;
9}
1button {
2 border: none;
3}
4
5button:focus {
6 border: none;
7 outline: none;
8}
9
10button:focus{
11 outline:none !important;
12}
13(add !important if it is used in Bootstrap)