trying to use the ‘include-source’ in CSS as found at
http://www.free-scripts.net/html_tutorial/css/properties/generate/incsource.htm
seems like a simple way to avoid some javascript.
I am making a page in which I have a div on the left. I want to load the external page (essentially linked thumbnail images) to use as a navigation. (to avoid placing thumbs of same items on multiple pages)
If I understand it correctly, it should take the content from the external page (in my case portthumbs.html) and drop the content into the div.
It doesn’t seem to work and it registers as an error in my debugger but I have seen samples.
CSS:
#portnav {
position: absolute;
width: 181px;
height: 411px;
include-source: url(“portthumbs.html”);
}
#portnav img{
float:left;
border: 3px solid #999999;
}
XHTML:
<div id= “left”>
<div id= “portnav”>
</div>
</div>
Am I missing something? Does it not work with FF?
I am running FF on WinXP and using XHTML 1.0 Strict for validation.