timo: Zwei Link-Styles für ein Dokument

Beitrag lesen

Hallo,

ich möchte in meinem Dokument zwei verschiende Styles den Links zuweisen (der eine im normalen Fließtext und der andere Zustand in einer Newsliste).

Momentan greife ich auf ein externes Dokument zu in dem die Styles für die eigentliche Site definiert sind:
<link href="styles/styles.css" rel="stylesheet" type="text/css">

Zudem sind in dem anderen Dokument nur die Styles enthalten, die die Newsliste betreffen:
<link href="styles/news.css" rel="stylesheet" type="text/css">

Nachfolgend noch die Auflistung der jeweiligen CSS-Datei.

--------------------------------------------------

styles.css:

link {
 font-family: "Times New Roman", Times, serif;
 font-size: 12px;
 color: #2b3897;
 text-decoration: none;
}
a:link {
 text-decoration: none;
 color: #2b3897;
}
a:visited {
 text-decoration: none;
}
a:hover {
 text-decoration: underline;
 color: #2b3897;
}
a:active {
 text-decoration: none;
}
.bold {
 font-family: "Times New Roman", Times, serif;
 font-size: 12px;
 font-weight: bold;
 color: #505050;
}

--------------------------------------------------

news.css

link {
 font-family: "Times New Roman", Arial, Helvetica, sans-serif;
 font-size: 12px;
 color: #ffffff;
 text-decoration: none;
}
a:link {
 text-decoration: none;
 color: #ffffff;
}
a:visited {
 text-decoration: none;
}
a:hover {
 text-decoration: underline;
 color: #ffffff;
}
a:active {
 text-decoration: none;
}

Viele Grüße.

Timo