<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>常見元素佈局</title>
<style type="text/css">
/* 1、垂直居中佈局 */
/* 1.單個元素垂直居中 高度固定 缺點:用到定位,脫離文檔流*/ .content { position: relative; height: 100px; background: #008000;/* background和height測試更好的觀看效果 */
} .box { height: 50px; position: absolute; top: 0; bottom: 0; margin: auto 0; background: #ff9933; color: #fff; /* background和color測試更好的觀看效果 */ line-height: 50px; /* 文字垂直居中 */
}
</style>
</head>
<body>
<div class="content">
<div class="box"> 高度固定 </div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>常見元素佈局</title>
<style type="text/css">
/* 1、垂直居中佈局 */
/* 2.單個元素垂直居中 高度固定 記得父容器設置了行高,子類要記得重置行高*/ .content { height: 100px; line-height: 100px; background: #008000;/* background測試更好的觀看效果 可忽略*/
} .box { display: inline-block; height: 50px; vertical-align: middle; background: #ff9933; color: #fff;/* background和color測試更好的觀看效果 */ line-height: 50px;/* 文字垂直居中 */
}
</style>
</head>
<body>
<div class="content">
<div class="box"> 高度固定 </div>
</div>
</body>
</html>
效果:css