|
Posted by Gus Richter on 01/23/44 11:58
Max@Volume.com wrote:
>
> How do you get the effect of frameless frames? If you want a small
> left frame to load documents into a larger right frame, without using
> frames, how would you do it?
Combination of css and html.
Basically, you create a box (div), give it an overflow:auto to
automatically give the scrollbars when needed, and load an object
(remote file) into it. An example with some values:
..frame1
{
text-align: left;
padding: 15px;
overflow:auto;
float: left; /* or position as needed */
height:xxxpx;
width: xx%;
}
<div class="frame1">
<object type="text/html" data="URLofPageToBeLoaded.htm" height="xxx"
width="xxx">
</object>
You can create and position as many as you want on a page.
--
Gus
Navigation:
[Reply to this message]
|