After verifying that my style is being successfully loaded, I have the following code implemented:
input:focus { outline: none; }
:focus { outline: none; }
The purpose of this code was to eliminate the dotted rectangle that appears when clicking on objects. While it works perfectly in Firefox for all elements except input buttons, those particular elements still display a dotted rectangle upon clicking.
Is there a way to prevent the dotted rectangle from appearing on input buttons as well?