Hallo,
ich lass mir über ein PHP-Skript den Inhalt einer Datenbank in Tabellenform anzeigen. Die Tabelle hat etwa 1500 Zeilen und 5 Spalten.
Im Firefox werden die Linien nur manchmal angezeigt, oder sie werden angezeigt, und wenn ich nach unten scrolle verschwinden sie.
Im IE7 und Opera keine Probleme. Quelltext (Ausschnitt):
HTML
		
					
				<DOCTYPE>
		<html>
			<head>
				<STYLE>
					TABLE { border-collapse:collapse; }
					BODY { background-color:#ffffff; font-family:Courier; font-size:10pt;}
					TD { text-align:left; border-width:1px; border-color:#000000; border-style:solid; font-size:10pt; white-space:nowrap; }
					H1  { font-family:Tahoma; font-size:10pt; color:rgb(0,152,53); font-weight:bold; }
					H2  { font-family:Tahoma; font-size:10pt; color:red; font-weight:bold; }
					A { font-family:Tahoma; font-weight:normal; color:black; text-decoration:none; }
					A.ip { font-family:Courier; font-weight:normal; color:rgb(150,150,150); text-decoration:none;}
					FORM { font-family:Tahoma; }
					TR.leucht:hover { background-color:rgb(240,200,0); border-width:1px; border-color:#000000; border-style:solid; font-size:10pt; white-space:nowrap; }
				</STYLE>
			</head>
			<body>
			<div>
				<table>
						
						<tr>
							<td>blubb</td>
							<td>blubb</td>
							<td>blubb</td>
							<td>blubb</td>
							<td>blubb</td>
						</tr>
.....
</table></div></body></html>Jemand ne Ahnung warum die Linien manchmal verschluckt werden und manchmal nicht?
