我们都知道 margin:0 auto; 的样式能让元素水平居中,而 margin: auto; 却不能做到垂直居中......直到现在。但是,请注意!想让元素绝对居中,只需要声明元素高度,并且附加以下样式,就可以做到: CSS Code复制内容到剪贴板 .Absolute-Center { margin: auto; position: absolute; top: 0; left: 0; bottombottom: 0; rightright: 0; } 我并不是第一个发现这种方法的人(不过我还是敢把它叫做“完全