我到处搜索,找不到答案。
如何在砌体布局中垂直和水平居中 div?我基本上希望一切都围绕这个 div 构建。
任何帮助都会很棒!
当您调用 masonry 时,您可以使用 isFitWidth: true
然后在容器上设置 margin: 0 auto 。
$container.masonry({
columnWidth : 120,
isFitWidth: true
});
在此处查看示例:Centered Masonry
如果它只是一个 div 你可以尝试用户
margin: 0 auto;
用于水平居中。
垂直居中你可以试试这个:
http://blog.themeforest.net/tutorials/vertical-centering-with-css/