677
צפיות
צפיות
2
תשובות
תשובות
בעייה עם לינקים ב CSS…
יש לי תפריט שמוגדר לו בתכונות שלו (CSS חיצוני) שכשעולים עליו יופיע קו תחתון.
משום מה, אחרי הלחיצה הראשונה על הלינק הקו התחתון מסרב להופיע ואפקט הקו התחתון מתבטל.
הנה קוד ה HTML:
<table border="0" class="MenuTable">
<tr>
<td><a href="biography.htm">Biography</a></td>
<td><a href="news.htm">News</a></td>
</tr>
</table>
הנה ה CSS:
a:link {text-decoration: none; color: #ffffff;}
a:hover {text-decoration: underline; color: #ffffff;}
a:visited {text-decoration: none; color: #ffffff;}
.MenuTable {font: bold; color: #ffffff; font-size: 11px;} – לטבלה
מה עושים?
2 תשובות
ככה:
נכון, זה נראה מוזר, אבל ככה זה צריך להיות…
תחליף את המקום של ה- HOVER ןה- VISITED.
ככה:
a:link {text-decoration: none; color: #ffffff;}
a:visited {text-decoration: none; color: #ffffff;}
a:hover {text-decoration: underline; color: #ffffff;}
גדול, עובד, תודה