I have a video container, and it'd be splendid if I could use calc
to calculate the height based on the width.
There are some inklings of stackoverflow answers that claim something like this is possible:
.selector{
width: 100%;
height: calc(width * 1.75);
}
But I haven't seen that work in Chrome 26. How can I calculate the height only using CSS3?