将元素居中的方法:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.center{
width: 500px;
height: 350px;
background-color: yellow;
border-radius: 5px;
position: absolute;
left:50%;
top: 50%;
transform: translate(-50%,-50%);
}
</style>
</head>
<body style="padding: 0">
<div class="center">
try it!!!
</div>
</body>
</html>
效果图: