Hi I want to get rid of the blue \"shine\" that appears when you click on a text field and begin to input data. How is this done?
I am a beginner so I am not that experi
This CSS snippet should work in all major browsers:
input:focus { outline:none; }
If it doesn't, try adding the !important directive:
!important
input:focus { outline:none !important; }