CSS Tricks for removing dotted border/outline on button when click
by exzant • 06 Nov 2011 • 0 Comments
This is the simple way to removing dotted border/outline when clicked the button ?View Code CSS :focus {outline:none;} /*for IE*/ ::-moz-focus-inner {border-color: transparent;} /*for mozilla*/ Hm.. It’s pretty enough.
Read more →