css如何将div实现全屏水平垂直居中_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:29:42
Original
1295 people have browsed it

css如何将div实现全屏水平垂直居中:
本章节介绍一下如何将一个div元素在整个网页内实现水平垂直居中效果,代码是最有说服力的,直接看代码。
代码如下:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title><style type="text/css"> body{   margin:0px;   padding:0px; } #thediv{  width:100px;  height:100px;  background:green;  position:absolute;  left:50%;  top:50%;  margin-left:-50px;  margin-top:-50px;}</style> </head> <body> <div id="thediv"></div></body> </html> 
Copy after login

以上代码将div在网页中实现了全屏居中效果,下面简单介绍一下它的实现过程。
一.实现原理:
将div元素设置为绝对定位,然后设置它的left和right属性值分别为50%,这个时候div并没有居中,居中的是div的左上角,所以我们还需要再将其向上和向左拉动一定的距离即可,这个距离分别是高度和宽度的一半。
二.相关阅读:
1.绝对定位CSS的绝对定位一章节。
2.margin负值可以参阅CSS的margin-right属性一章节。

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

更多内容可以参阅: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