1. 程式人生 > >寬高均為百分比的DIV,水平垂直居中

寬高均為百分比的DIV,水平垂直居中

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title></title>
</head>
<body style="height:100%;background:#DDEEBE;">
<div style="width:50%;height:50%;position:fixed;top:50%;left:50%;">
   <div style="width:100%;height:100%;position:relative;left:-50%;top:-50%;background:#CF865D;">
      垂直水平居中,相容ie6.0及以上版本,firfox3.6及以上版本,Opera,chrome,Safari,360瀏覽器,遨遊瀏覽器,搜狗瀏覽器等等。
   </div>
</div>
</body>
</html>