23.03.2004, 01:51
Moin zusammen!
Im Klartext: Du kannst #links nur einmal benutzen. Willst Du die Definition mehrmals im Code anwenden, dann mach daraus eine Klasse bzw. Pseudoklasse:
</tr>
</table>
[...]
Gruß Hulot
Zitat:[...] #links {Bevor Du den Fehler machst und den ID-Selektor "#links" mehrmals vergibst, lies Dir mal den CSS-Workshop "Selektoren und Klassen" durch. Am besten direkt ein Lesezeichen setzen.
width: 120px;
border-collapse:collapse;
}
#links a {
display: block;
background: #E0E0E0;
color: #000080;
font: bold 11px Verdana,Arial;
margin: 0px auto;
padding: 4px 2px;
text-decoration: none;
width: 120px;
}
#links a:hover {
background-color: lightblue;
color: blue
} [...]
Im Klartext: Du kannst #links nur einmal benutzen. Willst Du die Definition mehrmals im Code anwenden, dann mach daraus eine Klasse bzw. Pseudoklasse:
Zitat:[...].links {Kann dann so verarbeitet werden:
width: 120px;
border-collapse:collapse;
}
a.links:link {
display: block;
background: #E0E0E0;
color: #000080;
font: bold 11px Verdana,Arial;
margin: 0px auto;
padding: 4px 2px;
text-decoration: none;
width: 120px;
}
a.links:hover {
background-color: lightblue;
color: blue
} [...]
Zitat:[...]</p></td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="links">
[url=example.html]Example
</tr>
</table>
[...]
Gruß Hulot