DOES NOT WORK ON FIREFOX!
use jscript instead to manipulate values:
function bodyLoad() {
heightValue = document.getElementById(‘mainContainerRight’).offsetHeight ;
document.getElementById(‘mainContainer’).style.height = heightValue;
}
===============================================
jscript can be embedded into css:
p {
width:expression(400 + “px”);
}
p {
max-width:800px;
width:expression(document.body.clientWidth > 800? “800px”: “auto” );
}