<html>
<head>
<meta charset="UTF-8" />
<title></title>
<style>
.example{
width:500px;
height:500px;
background: #f00;
position: absolute;
top: 50%;
left: 50%;
margin-top: -250px;
margin-left: -250px;
/*以上两行的负值是为了块向左上角移动,保证块的中心位于网页中心*/
}
</style>
</head>
<body>
<div class="example">
</div>
</body>
</html>