I have a number of html documents in a structure that are quite long. The visual scrolling look isn't very nice so I'd like to put the content into the equivalent of an iframe that is much more visually appealing.
I don't really want to have to add another document for each document I want to turn into an iframe however. so rather than saying
<html>
<body>
<iframe src="mydocument.html">
</iframe>
</body>
</html>
I'd like the same effect (scroll bar, fixed border, scrolling inner text) with content that looks like
<html>
<body>
<iframe>
a great lot of content
that is already on a set
of html pages.
</iframe>
</body>
</html>
Of course it doesn't have to be an iframe if another tag or some css wizardry will accomplish the same thing. It is just one section of each page (the #main
content) that goes into the frame. I have other navigation type things that I'd like to leave untouched.
Any thoughts very much appreciated.
Thanks