CSS 垂直居中
程序员文章站
2022-03-20 15:32:57
方法一:外层给: display: table 区别: 子元素的 width=100%; 内层给: display: table-cell; vertical-align: middle; text-align: center; // 内容居中也是可以实现的。 方法二: 外层不论是 position ......
方法一:外层给: display: table ---区别: 子元素的 width=100%;
内层给: display: table-cell; vertical-align: middle; text-align: center; // 内容居中也是可以实现的。
方法二: 外层不论是 position: absolute;// position: relative; 对子内容没有影响 ---区别:子元素的宽高= 50%;
内层给: position:absolute; top: 50%; left: 50%; transform: translate(-50%, -50%)---transform:translate(x,y)
方法三: 只需要给父级元素 display: flex; justify-content: center; align-items: center; flex 容器,对项目设置水平和垂直居中
---区别: 效果等同于 table-cell 项目的 width = 100%;
方法三: 需要给父元素增加 :after 来占位
父元素: text-align: center;
子元素: display: inline-block; vertical-align: middle;
父元素 : after content:''; width:0; height: 100%; display: inline-block; vertical-align: middle;
上一篇: ASP.NET Core 2 学习笔记(三)中间件
下一篇: JdbcTemplate 基本使用
推荐阅读
-
浅析CSS在DevTools 中架构演变
-
多个
- 左浮动以后出现的问题,求高手_html/css_WEB-ITnose
-
IFrame 框架的用法简介_html/css_WEB-ITnose
-
CSS 有关margin padding_html/css_WEB-ITnose
-
懒人的诉求:有没有支持CSS文件的可视化的页面开发工具?_html/css_WEB-ITnose
-
手机端分类页面的效果图实现_html/css_WEB-ITnose
-
Codeforces Round #281 (Div. 2)_html/css_WEB-ITnose
-
能否实现对特定字符设置样式?_html/css_WEB-ITnose
-
垂直/水平居中
-
如何做好一个垂直搜索引擎