• CSS Tricks for removing dotted border/outline on button when click

    by  • 06 Nov 2011 • CSS • 0 Comments

    This is the simple way to removing dotted border/outline when clicked the button

     
    :focus {outline:none;} /*for IE*/
    ::-moz-focus-inner {border-color: transparent;} /*for mozilla*/

    Hm.. It’s pretty enough.

    CSS Remove Outline Dotted Button on Click

    About

    Leave a Reply

    Your email address will not be published. Required fields are marked *