div居中对齐的小例子

发布时间:2020-03-08编辑:脚本学堂
本文介绍一个div居中对齐的小例子,供大家学习参考。

在css中如何实现div的居中对齐呢?

使用:
 

复制代码 代码示例:
margin-left:auto;margin-right:auto;

可以让div居中对齐。
 

复制代码 代码示例:
.style{margin-left:auto;margin-right:auto;}

缩写为:
 

复制代码 代码示例:
.style{margin:0 auto;}

数字0 表示上下边距是0。大家可以根据需要设置成不同的值。

例子如下:
 

复制代码 代码示例:
<!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.jb200.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> 
</body> 
</html> 

注意:
需要加上上面的那句才能生效,否则,需要给body加一个属性:
 

复制代码 代码示例:
body{text-align:center;}

另外,让div内的内容(包括文字及图片)居中,可以使用:

复制代码 代码示例:
text-align:center

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