CSS and frameset capabilities
Looking for advice on proper syntax in CSS to execute a frameset function on xhtml web-page.
Ex: CSS: div#div1 {elements } div#div2 {elements } etc.
xhtml: set as Doctype..frameset
xhtml body: <div id='div1'>
<p id='f3' /><a href='file.htm':target='div2'>some name</a>
</div>
<div id='div2'></div>
I need the (file.htm) page to display within the (div2 tag). The same as it would using the Frameset (target='frame2') function in html.
|