Ein frohes neues Jahr allen Lesern!
2009 hat kaum begonnen, da brüte ich schon über einem Tabellen-Problem:
Ich möchte Seiten verlinken, mit einer Datums-, Titel-, und Quellenangabe, die ich in eine Tabellenzeile schreibe.
Beim onmouseover auf dem Inhalt EINER Zelle, möchte ich aber, dass der Inhalt ALLER Zellen einer Zeile schwarz wird.
Das zweite Problem ist die Schreibweise im Quelltext. Wenn ich für jede der 3 Zellen den gleichen Link eingebe ist das nicht nur aufwendig, sondern auch nicht besonders schlank geschrieben.
Hier gehts zur Beispielseite
Quelltext HTML
Quelltext CSS
Bin dankbar für jede Antwort!
Schöne Grüße
Wittekind
2009 hat kaum begonnen, da brüte ich schon über einem Tabellen-Problem:
Ich möchte Seiten verlinken, mit einer Datums-, Titel-, und Quellenangabe, die ich in eine Tabellenzeile schreibe.
Beim onmouseover auf dem Inhalt EINER Zelle, möchte ich aber, dass der Inhalt ALLER Zellen einer Zeile schwarz wird.
Das zweite Problem ist die Schreibweise im Quelltext. Wenn ich für jede der 3 Zellen den gleichen Link eingebe ist das nicht nur aufwendig, sondern auch nicht besonders schlank geschrieben.
Hier gehts zur Beispielseite
Quelltext HTML
Code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<table cellpadding="0" cellspacing="0">
<tr>
<td class="datum filled"><a href="1">01. 01. 2009</a></td>
<td class="titel filled"><a href="1">abcde fgh ij</a></td>
<td class="quelle filled"><a href="1">google.de</a></td>
</tr>
<tr>
<td class="datum transparent"><a href="2">02. 01. 2009</a></td>
<td class="titel transparent"><a href="2">klmno pqrs</a></td>
<td class="quelle transparent"><a href="2">google.de</a></td>
</tr>
<tr>
<td class="datum filled"><a href="3">03. 01. 2009</a></td>
<td class="titel filled"><a href="3">tuv wx yz</a></td>
<td class="quelle filled"><a href="3">google.de</a></td>
</tr>
</table>
</div>
</body>
</html>
Code:
body {
margin:0px;
}
div {
position:relative;
top:600px;
left:50%;
margin-left:-440px;
width:880px;
background:transparent;
padding:0px
}
table {
font-family:Georgia, Arial;
font-size: 15px;
width:880px;
border-width:0px;
}
td {
vertical-align:middle;
height:35px;
}
td.datum{
text-align:right;
width:130px;
}
td.titel{
text-align:center;
width:600px;
}
td.quelle{
text-align:right;
width:150px;
}
td.filled {
background-color:#E2E2E2;
}
td.transparent {
background-color:transparent;
}
a:link,
a:visited,
a:active {
color:#696969;
text-decoration:none;
font-weight:bold;
}
a:hover {
color:#000000;
}
Schöne Grüße
Wittekind