div元素上下左右居中

时间:2023-03-09 05:56:17
div元素上下左右居中
 <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>div元素上下左右居中</title>
<style type="text/css">
.divp{ width:300px; height:300px; background:#ccc; margin:0 auto; position:relative;}
.div1{ width:100px; height:100px; background:pink; margin:auto; position:absolute; top:0px; right:0px; bottom:0px; left:0px;}
</style>
</head>
<body>
<div class="divp">
<div class="div1"></div>
</div>
</body>
</html>