0

tumblrのテーマをすぐにまとめてしまうので、1つの投稿のコンテンツを中央に配置する必要があります。組積造はそれを絶対的に上:0と左:0に配置するように強制していると思います

ここに例があります:http://emilestest.tumblr.com/post/31114466201

何か案は

4

1 に答える 1

0

あなたのやりたいことを理解しているかどうかわかりません。コンテナを中央に配置したい場合は、本文に text-align center を追加し、幅を修正して、margin auto をコンテナに追加する必要があります。

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 に答える