Answers for "remove dotted border mendix"

CSS
0

remove the dotted border on links

/* removes dotted box around your clicked links */
a, a:active, a:focus{
        outline: none; /* Works in Firefox, Chrome, IE8 and above */ 
    }
Posted by: Guest on March-30-2020

Browse Popular Code Answers by Language