Franz: zwei Spalten gemeinsam scrollen

Beitrag lesen

Hier ist der Quelltext. Ich habe erst mal das Grundgerüst fertig und das geht noch nicht einmal richtig. Ich hoffe jemandem fällt was auf, warum das nicht geht.
MfG Franz

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>TITEL</title>
<style type="text/css">
<!--
body {
  color: #000000;
  background-color: #CCCCCC;
  margin: 0;
  padding: 5px;
  text-align: center;
  }

div#Seite {
  text-align: left;
  margin: 0 auto;
  padding: 0.5em;
  width: 760px;
  border: 2px solid black;
  background-color: #CC0000;;
  }

div#Links {
  float:left;
  width: 150px;
  text-align: center;
  }

ul#Navigation {
  float: left;
  text-align: center;
  margin: 0;
  border: 1px solid black;
  width: 150px;
  background-color: #CCCCCC;
  }

ul#Navigation li {
  list-style: none;
  border: 1px solid black;
  margin: 1px;
  }
ul#Navigation a {
  display: block;
  text-decoration: none;
  }

ul#Navigation a:link {
  color: black; background-color: #EEEEEE;
  }
ul#Navigation a:visited {
  color: #666666; background-color: #EEEEEE;
  }
ul#Navigation a:hover {
  color: black; background-color: white;
  }
ul#Navigation a:active {
  color: white; background-color: gray;
  }
div#Rechts {
  background-color: #EEEEEE;
  border: 2px ridge silver;
  margin-left: 170px;
  padding: 0.5em;
  }

-->
</style>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<div id="Seite">
<div id="Links">
<ul id="Navigation">
<li><a href="index.html">Startseite</a></li>
<li><a href="index.html">1. Link</a></li>
<li><a href="index.html">2. Link</a></li>
</ul><br><br>
Hier kommt noch ein Besucherzähler her
</div>
<div id="Rechts">Hier kommt dann der Inhalt der Homepage her</div>

</div>
</body>
</html>