css3實現元素垂直居中效果

antzone發表於2017-03-06

分享一段程式碼例項,它利用css3實現了元素垂直居中效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#box{
  width:500px;
  height:500px;
  background:red;
}
.antzone{
  position:relative;
  top:50%;
  -webkit-transform:translateY(-50%);
  -o-transform:translateY(-50%);
  transform:translateY(-50%);
  width:100px;
  height:100px;
  background:#ccc;
}
</style>
</head>
<body>
<div id="box">
  <div class="antzone"></div>
</div>
</body>
</html>

相關文章