html-定位实现盒子的水平绝对居中的3种方式--小技巧
方法一:margin负间距
必须知道居中盒的宽度和高度;
为居中盒设置绝对定位;
距离定位父级左边框和上边框的距离设置为50%;
将元素分别左移和上移,移动元素宽度和高度的一半
方法二:margin: auto;实现绝对定位元素的居中
必须知道居中盒的宽度和高度;
为居中盒设置绝对定位;
分别设置left: 0; right: 0; top: 0; bottom: 0;
为居中盒设置margin: auto;
方法三:transform: translate();实现绝对定位元素的居中
.box{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
实现代码
<!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>
.wrap{
height: 300px;
border-bottom: 2px solid #000;
position: relative;
}
.wrap1 .box{
position: absolute;
left: 50%;
top: 50%;
margin-left: -100px;
margin-top: -50px;
width: 200px;
height: 100px;
background: yellow;
}
.wrap2 .box{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
width: 300px;
height: 200px;
background: yellow;
}
.wrap3 .box{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
.wrap3 .box div{
width: 100px;
height: 100px;
background: pink;
}
</style>
</head>
<body>
<!-- 1)margin负间距实现带有width属性和height属性的绝对定位元素的居中 -->
<div class="wrap wrap1">
<div class="box">
<div></div>
</div>
</div>
<!-- 2)margin: auto;实现带有width属性和height属性的绝对定位元素的居中 -->
<div class="wrap wrap2">
<div class="box">
<div></div>
</div>
</div>
<!-- 3)transform: translate();实现绝对定位元素的居中 -->
<div class="wrap wrap3">
<div class="box">
<div></div>
</div>
</div>
</body>
</html>
效果截图
本文来自博客园,作者:JackieDYH,转载请注明原文链接:https://www.cnblogs.com/JackieDYH/p/17634910.html