css實現的彈出視窗始終垂直水平居中效果

antzone發表於2017-03-15

本章節介紹一下如何實現一個彈出視窗實現垂直水平居中效果,無論是否拖動滾動條。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html><html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
body{
  height:1000px;
}
.antzoen{
  position:fixed;
  width:250px;
  height:100px;
  background:#ececec;
  left:50%;
  top:50%;
  margin-left:-125px;
  margin-top:-50px
}
</style>
</head>
<body>
<div class="antzoen"></div>
</body>
</html>

上面的程式碼實現了我們的要求,可以實現始終垂直水平居中的效果。

相關文章