I'm trying to create a page that require frames, but I thought it can be done with CSS position: fixed. Then I saw it does not work in IE.
Is there any alternatives to frames that support all mayor browser?
| SitePoint Sponsor |


I'm trying to create a page that require frames, but I thought it can be done with CSS position: fixed. Then I saw it does not work in IE.
Is there any alternatives to frames that support all mayor browser?
Author at GraphicRiver

In order to do what? To keep navigation visible at all times? You could have your content in a div and set an arbitrary height, and let the overflow scroll:-Originally Posted by Braveheart4
Code:#content {height: 200px; overflow: scroll; width: 80%; } #nav {width: 20%;}





position: fixed; does work with IE7. For IE6 you may have to use Dean Edwards' patch.
Bookmarks