标签(空格分隔): css
垂直居中浮动元素
垂直居中元素,在布局中经常使用,总结一下:
方法一:已知元素的高宽
#div{
width:100px;
height:100px;
position: absolute; /*父元素需要相对定位 */
top: 50%;
left: 50%;
margin-top:-50px ; /* 二分之一的height,width */
margin-left: -50px;
background-color:#6699FF;
}
方法二:未知元素的宽高
#div{
width: 100px;
height: 100px;
background-color: #6699FF;
margin:auto;
position: absolute; /*父元素需要相对定位 */
left: 0;
top: 0;
right: 0;
bottom: 0;
}
方法三:使用translate
div{
background-color: #6699FF;
width: 100px;
height: 100px;
margin: auto;
position: absolute;/*父元素需要相对定位 */
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
}
方法四:使用flex布局
div{
background-color: skyblue;
width: 400px;
height: 400px;
display: flex;
justify-content: center;/*实现水平居中*/
align-items:center; /*实现垂直居中*/
}
垂直居中一个<img>
#div{ /*img的父盒子 */
display:table-cell;
text-align:center;
vertical-align:middle;
}
垂直居中一个<img>
并且图片自适应高度不失真
div{ /*父元素 */
text-align: center;
height: 110px;
position: relative;
}
div img{
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
margin: auto;
position: absolute;/*父元素需要相对定位 */
left: 0;
top: 0;
right: 0;
bottom: 0;
}
上面几种方法的demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>垂直居中</title>
<style type="text/css">
div.item1{
width: 400px;
height: 400px;
background-color: skyblue;
position: relative;
}
.item1 .tip{
width:100px;
height:100px;
position: absolute; /*父元素需要相对定位 */
top: 50%;
left: 50%;
margin-top:-50px ; /* 二分之一的height,width */
margin-left: -50px;
background-color:#6699FF;
}
/* ======================================================= */
.box{
height: 400px;
width: 400px;
background-color: skyblue;
}
div.item2{
width: 100%;
height: 100%;
position: relative;
}
.item2 .tip{
width: 100px;
height: 100px;
background-color: #6699FF;
margin:auto;
position: absolute; /*父元素需要相对定位 */
left: 0;
top: 0;
right: 0;
bottom: 0;
}
/* ======================================================= */
.item3{
height: 400px;
width: 400px;
background-color: skyblue;
position: relative;
}
.item3 .tip{
background-color: #6699FF;
width: 100px;
height: 100px;
margin: auto;
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
}
/* ======================================================= */
.item4{
background-color: skyblue;
width: 400px;
height: 400px;
display: flex;
justify-content: center;/*实现水平居中*/
align-items:center; /*实现垂直居中*/
}
.item4 .tip{
background-color: #6699FF;
width: 100px;
height: 100px;
}
/* ======================================================= */
.item5{
width: 400px;
height: 400px;
background-color: skyblue;
display:table-cell;
text-align:center;
vertical-align:middle;
}
</style>
</head>
<body>
<h2>一、已知元素的宽高</h2>
<div class="item1">
<div class="tip"></div>
</div>
<h2>二、未知元素的宽高</h2>
<div class="box">
<div class="item2">
<div class="tip"></div>
</div>
</div>
<h2>三、利用translate</h2>
<div class="item3">
<div class="tip"></div>
</div>
<h2>四、使用flex布局</h2>
<div class="item4">
<div class="tip"></div>
</div>
<h2>四、img居中</h2>
<div class="item5">
![](https://img.haomeiwen.com/i5363773/3605530804c7f972.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
</div>
</body>
</html>
网友评论