不说废话直接看代码都是干货
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
position: absolute;
width: 200px;
height: 200px;
left: 50%;
top: 50%;
margin-left:-100px;
margin-top: -100px;
background-color: turquoise;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
这样就能实现任何分辩率下居中了,如果各位需要别的大小颜色的话,可以自行修改代码的宽高和color呦