欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>

 

相关标签: CSS