That is why link urls should stay underlined to help people with color blindness see it immediately. since we are not able to adjust CSS being used on the website we browse, we will just instead use our own CSS page by specifying it on our browser. if you are color blind, this page will help you a lot. If you are not color blind, i don't recommend you using it because it would be weird.
First lets create our own CSS file and specify it via our browser settings later.
* {
color: #000 !important;
background: #fff !important;
}
a {
text-decoration: underline !important;
color: #fff !important;
background: #000 !important;
}
the !important specifier must be present on your CSS codes to tell the browser its important and must override the other CSS codes.
Using Internet Explorer navigate to
- Tools -> Internet Options
- Click on the Accessibility button
- Place a check on the 'Format documents using my style sheet' option
- Browse to the location where you saved your CSS file above.
- then click OK
Leave a comment