欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!

模式居中分为div形式水平居中与div内容垂直居中。

div模式水准居中相比机关div居中,而div形式居中比较容易,只重要配置一个模式居中css(text-align:center)、形式垂直居中(line-height)就可。

1、div内容水平居中CSS:
text-align:center
不论是p照样div都或是对其设置此CSS实现对应对象内的形式水平居中。

2、div形式垂直居中 行高属性:
line-height
要让div内只有一行的内容垂直居中,通常对div设置装备摆设的height(高)与line-height(行高)相似,就可完成div形式垂直居中。

3、div模式水平居中与垂直居中实例代码

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>div形式居中实例 CSS5</title>
<style>
#juzhong{width:320px;height:100px; line-height:100px; text-align:center; border:1px solid #F00}
</style>
</head>
<body>
<div id="juzhong">text-align和line-height配置水平与垂直居中</div>
</body>
</html>

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/jiqiao/j53177.shtml