Is it possible to have @include span(3 of 12)
return in pixels instead of a %?
I'm trying to create square elements, and I want the height of this element to be equal to its width.
.myElement {
width: span(3 of 12)
height: span(3 of 12)
}
Of course this causes height to be a %, which is really a % of its parent container, so it is not equal to the width! Any ideas?