September 5, 2025
    
Removing borders from buttons is part of many CSS resets, including mine, till recently:
button,input[type="submit"] {  border: none;}
However, during an accessibility test with a tester who uses high-contrast mode, I realized the problem with this. 
High contrast mode is used by many people with low vision or photosensitivity. It replaces your carefully-chosen website colour…
    
        Continue reading 
Accessibility: don't remove borders from buttons