|
Strangely enough, you can do it in IE but not any other browser. Go figure, the one browser that does CSS the worst....
In IE... you can do this:
<style>
#column1 {
width: expression(document.getElementsByTagName('body')[0]) / 2);
}
</style>
In IE, you can use javascript within the expression brackets. But every other browser will ignore it.
You can
|