首頁  >  文章  >  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