0

http://jsfiddle.net/7Kc2m/のような結果を得たいのですがtext-align、明らかな理由で使用したくありません。そのまま出ようとしたのですmargin: 0 autoが、不思議なことにうまくいきません。text-alignでは、 andなしでこれを達成するにはどうすればよいcenterですか? できれば、それが機能しない理由とmargin: 0 auto、あなたのもので機能する理由を教えてください。ありがとうございます。

で試してみたところfloat: left、うまくいきませんでした。

4

1 に答える 1

3

Make sure you specify a width on your margin:0 auto element.

It works in the fiddle because its an inline-block element, in conjuction with the text-align, but a block level element will span the entire width of the page if a width isnt specified, making the margin trick invalid.

于 2012-09-19T00:32:31.020 に答える