怎么让DIV在页面中居中显示?
发布网友
发布时间:2022-04-20 20:22
我来回答
共3个回答
热心网友
时间:2022-04-20 21:51
body {
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
}
热心网友
时间:2022-04-20 23:09
试试用属性 align="center"
热心网友
时间:2022-04-21 00:44
<html>
<head>
<style>
html,body{height:100%; margin:0; padding:0; overflow:hidden; background-color:#F00;}
.d2{width:200px; height:200px; position:absolute; top:50%; left:50%; z-index:1;/*background-color:#FF0;*/}
.d3{background-color:#06C; width:200px; height:200px; position:relative; top:-50%; left:-50%;}
</style>
</head>
<body>
<div class="d2">
<div class="d3">this</div>
</div>
</body></html>