标签: css margin
可能重复: Why don't margin-top: auto and margin-bottom:auto work the same as their left and right counterparts?
当你使用{margin:auto;}时,它会在对象的任意一侧给你一个自动边距,但你不能在对象的顶部和底部得到它们,为什么会这样?
{margin:auto;}
例如,如果我想将一个项目集中在页面中间,我将不得不使用{width:250px; height:250px; position: fixed; top: 50%; left: 50%; margin-top: -125px; margin-left: -125px;}
{width:250px; height:250px; position: fixed; top: 50%; left: 50%; margin-top: -125px; margin-left: -125px;}
Surly margin auto应该为顶部/底部和底部处理此问题。左/右边距?