javascript - Masonry - Column width percent + gutter -


why can't show 4 items row if width of each 1 25% , gutter param 10? please me!

$('.grid').masonry({     itemselector: '.grid-item',     columnwidth: '.grid-sizer',     gutter: 10 }); 

http://codepen.io/davelins/pen/bdorga

change

.grid-item {   width: calc(25%); } 

to

.grid-item {   width: calc(25% - 10px);  } 

Comments

Popular posts from this blog

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -