F.eks.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>To div ved siden af hinanden</title>
<meta name="keywords" content="søgeord adskilt af komma">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
html,body{height:100%;margin:0px;border:0px;padding:0px;text-align:center;}
#container{position:relative;width:700px;height:100%;margin:auto;text-align:left;}
#left{float:left;width:150px;height:100%;overflow:-moz-scrollbars-vertical;overflow-y:auto;overflow-x:hidden;background:orange;}
#right{float:left;width:550px;height:100%;overflow:-moz-scrollbars-vertical;overflow-y:auto;overflow-x:hidden;background:blue;}
</style>
<script language="javascript" type="text/javascript">
</script>
</head>
<body>
<div id="container">
<div id="left">
dette er i den venstre side
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
<div id="right">
dette er i den højre side
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</body>
</html>