L00NIX: DIV soll scrollen...

Beitrag lesen

Probiere mal das aus:

Funktioniert einwandfrei und in SelfHTML sind übrigens auch gute Beispiele zu diesem Thema.

Gruß
L00NIX

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
<style type="text/css">

html,body
{
  height: 100%;

margin:  0px;
  padding: 0px;
}

#test
{
  border: 1px solid #000000;

height:  10%;
  width:  10em;

overflow: auto;
}
</style>
</head>

<body>
<div id="test">
   <p>Test</p>
   <p>Test</p>
   <p>Test</p>
</div>
</body>
</html>