首页  >  文章  >  web前端  >  div垂直水平居中代码实例_html/css_WEB-ITnose

div垂直水平居中代码实例_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 11:29:521358浏览

div垂直水平居中代码实例:
本章节分享一段代码实例,它演示了如何让div实现全屏垂直水平居中和指定元素的内容垂直水平居中。
代码实例如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">#main{  position:absolute;  background-color: blue;  width:400px;  height:200px;  left:50%;  top:50%;  margin-left:-200px;  margin-top:-100px;  border:1px solid #00F;}#content{  position:absolute;  background-color:yellow;  width:200px;  height:100px;  left:50%;  top:50%;  margin-left:-100px;  margin-top:-50px;}</style><body><div id="main">  <div id="content"></div></div></body></html>

以上代码实现了我们的要求,能够实现居中效果,代码比较简单,就是基本的逻辑问题。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=13332

更多内容可以参阅:http://www.softwhy.com/divcss/

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn