उस रूपरेखा को कभी भी न हटाएं, या कम से कम इसे केवल सक्रिय के लिए हटा दें: सक्रिय। यदि आप इसे सभी एंकरों के लिए करते हैं तो इसे एक के लिए भी हटा दिया जाएगा: फोकस जिसका उपयोग कीबोर्ड नेविगेशन के लिए किया जाता है। होवर पर भी भरोसा करना बहुत बुरा है क्योंकि होवर टच स्क्रीन पर मौजूद नहीं है।
मुझे लगता है कि सभी लिंक आसानी से शेष सामग्री से अलग-अलग हैं।
2016 संस्करण
/* The order is important! Do not use fixed values like px! Always check contrast between text and background for accessibility! */
a { border-bottom: thin solid;
color: rgb(0,0,192);
font-weight: bolder;
text-decoration: none;
}
a:visited { color: rgb(160,0,160); }
a:active { color: rgb(192,0,0); }
a:active, a:focus, a:hover { border-bottom-width: medium; }
2015 संस्करण
a { border-bottom: thin solid;
color: rgb(0,0,192);
font-weight: 700;
text-decoration: none;
}
a:visited { color: rgb(128,0,128); }
a:active { color: rgb(192,0,0); } /* :active MUST come after :visited */
a:active, a:focus, a:hover { border-bottom-width: medium; }
2014 संस्करण
: यह मेरी निजी पसंद है
a { border-bottom: 1px solid;
color: rgb(0,0,166);
font-weight: 700;
text-decoration: none;
}
a:visited { color: rgb(122,0,122); }
a:active { color: rgb(166,0,0); } /* :active MUST come after :visited */
a:active, a:focus, a:hover { border-bottom: 3px solid; }
2013 संस्करण
a { color: rgb(0,0,166);
font-weight: 700;
border-bottom: 1px dotted;
text-decoration: none;
}
a:visited { color: rgb(122,0,122); }
a:hover, a:focus, a:active { border-bottom: 2px solid; }
a:focus, a:active { color: rgb(166,0,0); }
प्यार से नफरत है (http://meyerweb.com/eric/css/link-specificity.html) सिफारिश हुआ करता था। – j08691