<!DOCTYPE html>
<html>
<head>
<meta charset="utf⑻" />
<title>CSS完成div垂直居中</title>
<style>
/*外层div垂直居中*/
#main {
position: absolute; /*极其关键*/
background-color: blue;
width:400px;
height:200px;
left:50%;
top:50%;
margin-left:⑵00px;
margin-top:⑴00px;
border:1px solid #00F;
}
#content {
position: absolute; /*极其关键*/
background-color: yellow;
width: 200px;
height: 100px;
left:50%;
top:50%;
margin-left:⑴00px;
margin-top:⑸0px;
/*div內部文本垂直居中*/
text-align: center;
line-height:100px; /*行间隔和div宽度同样*/
}
</style>
<body>
<div id="main">
<div id="content">
Sun
</div>
</div>
</body>
</html>