عند استعمال:
/* simple reset */
a {
text-decoration: none;
}فلا حاجة لتكرار نفس الخاصية في أماكن أخرى، يمكنك استعمال:
text-decoration: none;
فقط إذا أردت تغيير القيمة إلى:
a {
text-decoration: underline;
}كذلك لا تكرر الخاصية في كل من a و a:hover
a {
text-decoration: none;
}
a:hover {
text-decoration: none;
}يكفي أن تكتب الخاصة مرة واحدة في الوسم a:
a {
text-decoration: none;
color:#999
}
a:hover {
color:#666 /* .. */
}
