DIV+CSS实现居中

垂直居中

div {
height:60px;
line-height:60px;
}

height:div的高度
line-height:div的行高

并且水平居中

div {
text-align:center;
height:60px;
line-height:60px;
}

text-align:规定元素中的文本的水平对齐方式

你可能感兴趣的:(DIV+CSS实现居中)