Forum Moderators: not2easy
<div>'s are objects on a page, and do not have a seperate URL, so unfortunately you cannot load another URL into them.
you can always use a serverside include (i use php for it) to put the contents from a different file into the div.
<div id="whatever">
<?php include("file.php");?>
</div>
Works great for menus; however I am not sure if this is what svolt wanted to achieve.
See CSS2 Section 9.6.1 Fixed Positioning [w3.org]
There are a couple threads in the forum library about how to acheive frame emulation using CSs
A great example of a site using CSS to mimic some aspects of a framed document is at Salia.com [saila.com]. You'll also find some excellent content that has been mentioned serveral times on WebMasterWorld including CSS Layouts [saila.com], HTML is not an acronym [saila.com] and Lorem Ipsum [saila.com] (Just in case you've ever wondered what the heck it is.
Unfortunately, he doesn't have a stripped down explanatory file explaining his technique. Maybe he'll write one if we ask nicely. :)