
Originally Posted by
Vallim
In order to have the scroll bar from top to bottom you have to specify the height and width of the div tag as,
.iframe
{
overflow:auto;
height:30px;
width:420px;
}
That is almost exactly what Ben has:
<style type="text/css">
.iframe {
overflow:auto;
height:75px;
width:100px;
}
</style>
The real problem is that by not including any white space in the content:
Code:
Message,Message,Message,Message,
Message,Message,Message,Message,MessageMessage,Message
It cannot wrap and is too wide, needing a horizontal bar. Change the content to:
Code:
Message, Message, Message, Message,
Message, Message, Message, Message, Message, Message, Message
and your troubles are over.
Bookmarks