Is it possible to specify a masonry columnWidth in em units, rather than pixels?
$(function(){
$('#container').masonry({
itemSelector : '.item',
columnWidth : '20em',
My goal is to create a layout that is robust when used with Firefox 'zoom text only'. And in general I don't use pixel units anywhere else... everything on this site is em units.
When I try the above columnWidth all the divs stack on top of each other, as if the columnWidth were zero.
An answer for vanilla masonry would also meet the desire.