CSS未知div高度垂直居中代码_层和布局特效
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta
http-equiv="Content-Type" mrc="text/html; charset=utf-8"
/>
<title>CSS未知高度垂直居中</title>
<style
type="text/css">
html,
body
{
height: 100%;
padding:0;
margin:0;
}
body
{
min-height: 200px;
text-align: center;
min-width:
402px
}
.FirstDIV
{
margin-top: -100px; /* SecondDIV高度的一半 */
float:
left;
width: 100%;
height: 50%;
}
.SecondDIV
{
clear: both;
border: silver 1px solid;
background: #CCCCCC;
margin-left: auto;
overflow: auto;
width:
400px;
margin-right: auto;
height: 200px;
text-align:
left
}
</style>
</head>
<body>
<div
class="FirstDIV"></div>
<div class="SecondDIV">
<p>晕噢,难道没有居中吗?</p>
<p>我是模板无忧(<a
href="/jscss/">mb5u.com</a>)提供各类编程源码、视频教程、JavaScript/CSS特效代码以及常用软件下载等。<br>看我是不是垂直居中了?</p>
</div>
</body>
</html>
以上方式测试了下 ,发觉兼容性还不错
还有一种实现方式,是通过onresize 。onresize事件会在窗口或框架被调整大小时发生。
在事件里面计算出要居中的内容的top,left值,设置css.
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。