css div居中显示的实现代码

发布时间:2013-12-09编辑:脚本学堂
分享一例css代码,用于div元素的居中显示,代码很简单,适合初学的朋友参考下。

本节内容:
css实现div居中

例子:
 

复制代码 代码示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>div居中显示-www.jbxue.com</title>
<style type="text/css">
.align-center{
 margin:0 auto; /* 居中 这个是必须的,,其它的属性非必须 */
 width:500px; /* 给个宽度 顶到浏览器的两边就看不出居中效果了 */
 background:red;  /* 背景色 */
 text-align:center;  /* 文字等内容居中 */
}
</style>
</head>

<body>
<div class="align-center">居中div演示效果</div><br/><br/>欢迎访问:<a href="http://www.jbxue.com/" target="_blank">脚本学堂</a>
</body>
</html>

代码说明:
1,使用margin-left:auto;margin-right:auto; 可以让div居中对齐。
2,.style{margin-left:auto;margin-right:auto;} 缩写形式为: .style{margin:0 auto;} 数字0 表示上下边距是0。
可以按照需要设置成不同的值。

>>> 查看更多 css 居中 相关教程 <<<