Fuck CSS (1) 固定大小元素的水品垂直居中对齐方法

来源:互联网 发布:linux sleep cpu 编辑:程序博客网 时间:2024/06/03 16:13

what {

width: 500px; /* for example*/

height: 400px; /* for example*/

position: absolute;

left: 50%;

top: 50%;

margin-top: -200px;

margin-left: -250px;

}