CSS -> How do I update a section?

To further elaborate, I'm trying to find out what the equivalent of having a link clicked in one frame open content in another frame by specifying a target.
 
That'd be an HTML issue, not CSS. in your A HREF tag, add a TARGET attribute that points the link to the name of your frameset.


Personally, I'd avoid frames if possible. It can add major issues if you don't code the site properly and wind up opening frames within frames. Also, it makes it nearly impossible for anyone to link further down into your navigation structure, the URL in the address bar will just show the root rather than the full file structure. That could be an issue if someone wants to link to or bookmark a particularly interesting article on your site.
 
I know that's HTML... just using that as a reference for what I want to do in CSS. How is something similar done in CSS? Or what is the technique for refreshing content in a block when clicking a link in another block?
 
Back
Top