DIV中的文字水平居中和垂直居中的CSS

div {
height: 50px;
width: 100%;
text-align: center; // 水平居中
line-height: 50px // (跟高度一样,就能垂直居中)
}

Comments Closed.