css position: fixed; 垂直居中,绝对定位居中

.boxout{
	background:#fff;
	z-index: 111;===display:none;
	box-shadow: 0 1px 4px #AAA;
position: fixed; _position:absolute; /* hack for IE6 */

top: 50%;
left: 50%; 
margin: -201px 0 0 -480px; /* 注意,201表示高度的一半,480也是按自己需要自己调整*/
width:960px;
height:402px;
padding:15px;
}

css position: fixed; 垂直居中,绝对定位居中_第1张图片

你可能感兴趣的:(css及js相关)