user2424856
user2424856

Reputation: 1

Susy matching column heights

New to Susy. I have a 12-column grid with side-by-side content areas: content-left: span-columns(3,12); content-right: span-columns(9 omega, 12). both content areas must have equal height, matching the area with the longest content. Ordinarily I'd use a clearfix in this situation, but that doesn't seem to apply to susy grids. What am I missing?

Upvotes: 0

Views: 2704

Answers (1)

Miriam Suzanne
Miriam Suzanne

Reputation: 14010

Clearfix works fine with Susy, but clearfix won't give you equal height columns. It only forces the container to clear the columns. CSS doesn't actually have a good solution for equal height, but there are various workarounds you can try. Susy won't have any affect, for better or worse. All Susy really does is float columns and set their width.

Upvotes: 1

Related Questions