div内容水平居中是很多网站需要的用到的,即保持div包含内容的水平和垂直居中。
text-align属性可以是包含内容水平居中,而设置 line-height 属性,这是行距属性,当设置为div高度时,其所含内容就垂直居中了。
注意:line-height的值需要设置成与div高度相等,才能达到垂直居中效果。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>div 内容居中</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
body, html {
height: 100%;
}
.center {
width: 300px;
height: 250px;
line-height: 250px;
text-align: center;
background-color: #eee;
border: 1px solid #000;
float: left;
}
</style>
</head>
<body>
<div class="center">
居中内容
</div>
</body>
</html>
网友评论