div居中 方法1

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>test</title>
	<style>
		.fu{
			width: 300px;
			height: 400px;
			display: table-cell;
			vertical-align: middle;
			background-color: teal;
		}
		.zi{
			width: 100px;
			height: 100px;
			background-color: pink;
			margin: auto;
		}
	</style>
</head>
<body>
	<div class="fu">
		<div class="zi"></div>
	</div>
</body>
</html>
    1. 利用 css3 的新增属性 table-cell

猜你喜欢

转载自blog.csdn.net/qq_36836332/article/details/81592314
今日推荐