Forum Moderators: open
My overall desire is to put text in an area which will support scrollbars and I am assuming that IFrames are the simplest way to do it. But I don't want the SE spiders to have trouble finding the text in the IFrame or penalizing my pages for it.
thx
<html>
<head>
<title>Div Scrolling Example</title>
<style type="text/css">
div.scrolling {
width:232px;
height:255px;
overflow: auto;
}
</style>
</head>
<body>
<div class="scrolling">
<p>This will scroll.</p><p>So will this.</p>
<p>See it's working!</p><p>Nice isn't it?</p>
<p>This will scroll.</p><p>This will scroll.</p>
<p>This will scroll.</p><p>This will scroll.</p>
<p>This will scroll.</p>
</div>
</body>
</html>Hope this helps you,
Elijah Lofgren