|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Ajax Application Generator Generate database and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
This bands page, http://www.cannibalcorpse.net/ , has a window within a window thing. I can see how the scroll bars were changed, but how do you actually add the new window within the broswer window, like they have done?
|
|
#2
|
||||
|
||||
|
If you view the source code, you will notice a tag called <iframe>. iframe stands for inline frame, and is quite similar to a traditional frame.
Here's how they're used: http://mercury.tvu.ac.uk/~lucieh/iframe.htm Here's another example: http://www.newstoday.com |
|
#3
|
|||
|
|||
|
You can also create this "effect" without iframe, simply by using CSS and div.
CSS: Code:
#divname
{
width: 320px;
height: 100px;
overflow: auto;
}
HTML: Code:
<div id="divname">Much text</div> You can see an example of this here: http://www.rundeting.no/?page=3 If the content inside divname expand's 100px it will be created a scrollbar in the div. Iframe are easier to deal with, but if you wan't to learn about CSS you can start reading here: http://www.w3schools.com/css/default.asp Last edited by EiSa : July 1st, 2004 at 03:38 AM. |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > how is this done??? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|