代码编译:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<style>
.main_box{
width: 300px;
height: 300px;
background-color: crimson;
position: absolute;/* 绝对定位 */
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -150px;
}
</style>
<body>
<div class="main_box"></div>
</body>
</html>
效果: