css expressions

Oct 23, 12:30 PM

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:

Expressions example

p { width:expression(400 + “px”);
}

p { max-width:800px; width:expression(document.body.clientWidth > 800? “800px”: “auto” );
}

Mark Edwards

,

---

Commenting is closed for this article.

---