文字水平和垂直居中的方法:
文字水平居中:
text-align:center;
文字垂直居中:
line-height:200px;
height:200px;
/*将line-height和height设置为一样的值。*/
代码示例:
<!DOCTYPE html>
<html>
<head>
<title>文字的水平居中方法</title>
<style type="text/css">
.wrap {
/*将line-height与height设置为一样高,使文字垂直居中。*/
line-height: 200px;/*垂直居中关键*/
height: 200px;
text-align: center;/*水平居中关键*/
background-color: #ccc;
}
</style>
</head>
<body>
<div class="wrap">文字的水平居中方法</div>
</body>
</html>