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

WBOY
Release: 2016-06-24 11:29:52
Original
1410 people have browsed it

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>
Copy after login

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

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

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

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template