Is it possible to reference a value in one part of a stylesheet in another part? For example, say I want to set the CSS top value for a div with position:absolute to match the height of another element, is there a way to do that? Is it possible to say, in effect:
.div1 {
height: 50px;
}
.div2 {
position: absolute;
top: <height value of div1>
}
.div1, why not just add also that fixed value to.div2?