私の人生では、流体/パーセンテージレイアウトを使用するときに、幅の広いガターを削除して0に設定する方法を理解できません。
gutterWidth: 0
に設定とマージンとパディングを試しまし0%
たが、それでも機能しません。
これが石積みサイトのコードです。
$('#container').masonry({
itemSelector: '.box',
gutterWidth:0,
// set columnWidth a fraction of the container width
columnWidth: function (containerWidth) {
return containerWidth / 5;
}
});
CSS
.box {
width:33%;
margin:0%;
padding:0%
}
.box img {
width:100%;
height:auto
}
何を調整する必要がありますか?