css实现水平垂直居中的方法
程序员文章站
2024-01-26 15:38:30
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#father{
width: 200px;
height: 200px;
background-color:pink;
position: relative;
margin: 0 auto;
top: 50%;
margin-top: -100px;
}
.son{
width: 100px;
height: 100px;
background-color: blue;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;
/* transform: translate(-50%,-50%); */
}
</style>
</head>
<body>
<div id="father">
<div class="son"></div>
</div>
</body>
</html>
上一篇: php中截取中文字符会出现乱码的问题
下一篇: 5月28号在学