欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

css屏幕居中的方法(推薦)

  發(fā)布時間:2010-07-20 23:40:05   作者:佚名   我要評論
css實(shí)現(xiàn)的頁面元素屏幕垂直居中的方法,需要的朋友可以參考下。

復(fù)制代碼
代碼如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">
<!--
div {
position:absolute; //絕對定位
top:50%; //距頂部50%
left:50%;
margin:-100px 0 0 -200px; //設(shè)定這個div的margin-top的負(fù)值為自身的高度的一半,margin-left的值也是自身的寬度的一半的負(fù)值.(感覺在繞口令)
width:400px; //寬為400,那么margin-top為-200px
height:200px; //高為200那么margin-left為-100px;
border:1px solid red;
line-height:200px;
font-size:16px;
text-align:center;
z-index:99; //浮動在最上層
}
-->
</style>
<div>歡迎光臨腳本之家 www.dbjr.com.cn</div>

相關(guān)文章

最新評論