link i css
Hej igen.Jeg forstår ikke helt hvorfor noget i mit eksterne stylesheet ikke virker?
Jeg vil gerne have at når et vidue er aktivt kommer der en rød streg øverst på den celle der er aktiv. Jeg tænker det er vel top border man sætter. Alt andet virker i mit stylesheet undtagen når jeg har skrevet det med top border.
her er min tabel hvor det er de <td class="links"> jeg gerne vil have det til at virke på.
Håber der er nogen der har nogle ideer?
<!---menu---!>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="sortmenu">1</td>
<td class="links" bgcolor="#000000" width="85" align="left"><a href="index.htm">Forside</a></td>
<td class="links" bgcolor="#000000" width="100" align="left"><a href="aktiviteter.htm">Aktiviteter</a></td>
<td class="links" bgcolor="#000000" width="100" align="left"><a href="restaurant.htm">Restaurant</a></td>
<td class="links" bgcolor="#000000" width="110" align="left"><a href="overnatning.htm">Overnatning</a></td>
<td class="links" bgcolor="#000000" width="80" align="left"> <a href="galleri.htm">Galleri</a></td>
<td class="links" bgcolor="#000000" width="100" align="left"><a href="booking.htm">Booking</a></td>
</tr>
<tr>
<td class="mellemrum" colspan="7"></td>
</tr>
</table>
Dette er hvad der står i mit eksterne stylesheet:
.links a:link {
font: Cambria;
font-family: sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-decoration: none;
text-align: center;
color: White;
background-color: Black;
}
.links a:visited {
font: Cambria;
font-family: sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-decoration: none;
text-align: center;
color: White;
background-color: Black;
}
.links a:active {
font: Cambria;
font-family: sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-decoration: none;
text-align: center;
color: #B9121B;
border-top: 2px;
border-top-color: red;
border-top-style: solid;
border-top-width: medium;
border-width: medium;
}
.links a:hover {
font: Cambria;
font-family: sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-decoration: none;
text-align: center;
color: #B9121B;
background-color: Black;
}
Med Venlig Hilsen
Mads