Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

the text is all styled identically so you have to hover the mouse over a word to notice the link. WTF?

Affordance of hyperlinks is key to the Web.

I apply the following CSS to most/many sites to identify links:

        a {
            color: #427fed;
            text-decoration: none;
        };

        a:active {
            background-color: #427fed;
            color: #fffff6;
        };

        a:hover {
            text-decoration: underline;
        }

Hrm. I should add a :visited selector as well.


I'm liking this color:

    a:visited { color: #6f32ad; }




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: