HTML/CSS居中对齐的方式大全
程序员文章站
2022-04-26 15:58:10
...
HTML与CSS中居中对齐的方式大全
第一种方式
[css] :
.parent{
width: 300px;
height: 300px;
background: #ddd;
/*display: table;*/
display: table-cell;
vertical-align: middle;
text-align: center;
}
.child{
display: inline-block;
/* 水平居中对齐 */
margin: 0 auto;
}
HTML:
<div class="parent">
<div class="child">
fassad
</div>
<div class="child">
fassad
</div>
</div>
第二种方式
[css] :
.parent{
position: relative;
height: 400px;
width: 400px;
border: 1px solid red;
}
.child{
position: absolute;
left:50%;
top:50%;
border: 1px solid blue;
height: 150px;
width: 150px;
transform:translate(-50%, -50%);
}
HTML:
<div class="parent">
<div class="child">
</div>
</div>
第三种方式
[css] :
.parent{
width: 300px;
height: 300px;
background: #ddd;
position: relative;
}
.child{
width: 200px;
height: 100px;
background: #A1CCFE;
position: absolute;
/*竖直方向居中*/
top: 0;
bottom: 0;
/*水平方向居中*/
left: 0;
right:0;
margin: auto;
/*行内文本居中*/
/*line-height: 100px;
text-align: center;*/
}
第四种方式
[css] :
.parent{
display: flex;
align-items: center;
justify-content: center;
}
HTML:
<div class="parent">
<div class="child">
</div>
</div>
/**祝各位博主与程序员们10.24程序员节要过的开开心心,累并充实着哦????~*/
上一篇: 文本图片的对齐方式
下一篇: spring boot(2) : pom
推荐阅读
-
HTML-移动端如何使用css让百分比布局的弹窗水平和垂直方向上居中_html/css_WEB-ITnose
-
解说css中的margin属性缩写方式_html/css_WEB-ITnose
-
JSP网页实现拼音和汉字的上下对齐_html/css_WEB-ITnose
-
引入css的四种方式_html/css_WEB-ITnose
-
html5 table标签的样式介绍(另附html5 table css居中的实例)
-
详解angular中为HTML元素添加css类的几种方式
-
html好看的字体样式代码(css字体样式代码大全)
-
html好看的字体样式代码(css字体样式代码大全)
-
css居中对齐的几种方法实例分享
-
【基础】这15种CSS居中的方式,你都用过哪几种?-CSS技术学习-SegmentFault思否