0

我很快就将一个 tumblr 主题拼凑在一起,我需要将单个帖子上的内容放在中心位置。我认为 Masonry 迫使它绝对定位在 top:0 和 left:0

这是一个例子:http ://emilestest.tumblr.com/post/31114466201

有任何想法吗

4

1 回答 1

0

我不知道我是否明白你想做什么。您是否要使容器居中,您应该将 text-align center 添加到正文并固定宽度并将边距自动添加到容器:

body {
  background-color:#EFE9E1;
  height:100%;
  text-align:center;
}
#container {
  background-color:#EFE9E1;
  min-width:1024px;
  overflow:hidden;
  position:relative;
  width:1024px;
  margin:0 auto;
}
于 2012-09-29T16:42:47.217 回答