css如何让div水平垂直居中
程序员文章站
2022-05-01 21:13:51
...
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<style>
.box{
width: 100px;
height: 100px;
background-color: aqua;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;
}
</style>
<body>
<div class="box"></div>
</body>
</html>
上一篇: vue插件--fastclick,解决移动端300ms延迟
下一篇: LINUX 运行jar包