1.巧用,transform:translateY(-50%)。
2 代码如下
(注意,这个代码块放在 两行顿号之间,这个顿号是tab键上面的那个符号,顿号要在英文状态下敲击三下)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>垂直居中</title>
<style>
.bg{
background-color: red;
/* 注意高度需要是值,也可以是变量用js 来设置,或者其父元素是有值的。 */
height: 800px;
position: relative;
}
.ce{
border: 1px solid yellow;
width: 200px;
height: 200px;
background-color: yellow;
position: absolute;
top:50%;
right: 20%;
transform: translateY(-50%)
}
</style>
</head>
<body>
<div class="bg">
<form class="ce" action=""></form>
</div>
</body>
</html>
效果如图
1542940804(1).jpg
网友评论