I'm trying to assign a value for an element's height based on the width value of a browser. For example (what I'm trying to accomplish is in between the double slash)...
.myDiv {
width: 35%;
height: // width * 1.61 //;
}
How can this be done?