You could do something like:
<html>
<head>
<title>css frame like</title>
<style>
html, body { margin: 0; padding: 0; height:100% }
#wrapper { margin: 0 auto; width:960px; height:100%}
.content { width:720px; margin-left:240px; height:100%;
overflow:scroll; background-color:#cccccc;}
.menu { width:240px; float:left; background-color:#e2e2e2;}
</style>
</head>
<body>
<div id="wrapper">
<div class="menu">Your menu here</div>
<div class="content">your content goes here</div>
</div>
</body>
</html>That would give you the look and feel of frames. You could replace the content with an iframe if you really wanted. Why not actually use framesets? On Sep 29, 5:44 pm, bruce <[email protected]> wrote: > Where can I find an css example that is of a "HTML Frame"? What I > want is fairly simple, namely a Vertical menu on the left and Main > area on the right. When I click on the navigation item, I want a new > page to appear in the main area.. > > If I can do this, can some one point me to an example? > > Thanks... > > Bruce -- -- You received this because you are subscribed to the "Design the Web with CSS" at Google groups. To post: [email protected] To unsubscribe: [email protected]
