div全屏居中
<style>
#warp {
position: absolute;
width:800px;
height:400px;
left:50%;
top:50%;
margin-left:-400px;
margin-top:-200px;
border: solid 3px red;
}
</style>
<body>
<div id=warp>Test</div>
</body>
#warp {
position: absolute;
width:800px;
height:400px;
left:50%;
top:50%;
margin-left:-400px;
margin-top:-200px;
border: solid 3px red;
}
</style>
<body>
<div id=warp>Test</div>
</body>
版权声明:本文为starxp原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。