我正在做一个网站,我试着垂直居中:
 position: absolute;
 width:1200px;
 height:600px;
 top: 50%;
 left: 50%;
 margin-left: -600px;我的超文本标记语言是一个单一的div
发布于 2012-03-19 13:32:16
top:50%;运行良好,但不会将项目“居中”,它会将页面高度的50%放在顶部的顶部边缘。与使用margin-left:-600px;类似,您还应该添加margin-top:-300px;
https://stackoverflow.com/questions/9765402
复制相似问题