div垂直居中的方法
程序员文章站
2022-03-02 19:00:13
...
div 垂直居中
html:
<div class="box">
<div></div>
</div>
css:
/* 方法一 */
.box{
width:200px;
height:200px;
background: #ff6699;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
}
/* 方法二*/
.box{
width:200px;
height: 200px;
background:green;
position: absolute;
margin-left:-100px;
magin-top:-100px;
}
/* 方法三 */
/* 父级容器指定高度 */
.box{
display:flex;
justify-content:center;
align-items:center;
height:600px;
}
.box>div{
width:200px;
height:200px;
background:green;
}
/* 方法四*/
.box{
width:200px;
height:200px;
position:absolute;
background:green;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
上一篇: Hibernate的级联操作
下一篇: jpa 设置属性级联操作
推荐阅读
-
CSS实现居中的7种方法_html/css_WEB-ITnose
-
div中有一个marquee标签,marquee中有滚动显示的文字,如何让文字在div中垂直居中从右向左滚动显示?_html/css_WEB-ITnose
-
css实现水平垂直居中的方法
-
javascript 让DIV的滚动自动滚动到最底部 - 4种方法
-
div水平居中 垂直居中_html/css_WEB-ITnose
-
CSS2/CSS3盒子居中的三种方法
-
css 实现DIV水平垂直居中于屏幕_html/css_WEB-ITnose
-
jQuery随便控制任意div隐藏的方法
-
jQuery实现隐藏div的方法
-
怎么是浮动的div水平居中啊?_html/css_WEB-ITnose