Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
28
rated 0 times [  30] [ 2]  / answers: 1 / hits: 45020  / 10 Years ago, sat, june 14, 2014, 12:00:00

I want to do is remove the button blue box shadow effect in my class btnd if the button is click.



current output:



i tried this but it doesnt work.



.btnd:active,
.btnd.active {
background-image: none;
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}

More From » jquery

 Answers
10

Blue shadow is browser default :focus state



.btnd:active,
.btnd:focus,
.btnd:focus:active {
background-image: none;
outline: 0;
box-shadow: none;
}

[#70572] Thursday, June 12, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
carterf

Total Points: 255
Total Questions: 93
Total Answers: 122

Location: Marshall Islands
Member since Wed, Jun 17, 2020
4 Years ago
;