当前位置:网站首页>页面元素垂直水平居中、实现已知或者未知宽度的垂直水平居中。
页面元素垂直水平居中、实现已知或者未知宽度的垂直水平居中。
2022-07-04 17:47:00 【回忆哆啦没有A梦】
页面元素垂直水平居中、实现已知或者未知宽度的垂直水平居中
// 1
.wrapper {
position: relative;
.box {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
}
}
// 2 我最常用的
.wrapper {
position: relative;
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
// 伪类+vertical-align: middle;
.box{
vertical-align: middle;
display: inline-block;
}
.wrapper::after{
content: '';
height: 100%;
width: 0;
vertical-align: middle;
display: inline-block;
}
// 3
.wrapper {
.box {
display: flex;
justify-content:center;
align-items: center;
height: 100px;
}
// 4
.wrapper {
display: table;
.box {
display: table-cell;
vertical-align: middle;
}
}
边栏推荐
- Safer, smarter and more refined, Chang'an Lumin Wanmei Hongguang Mini EV?
- [uniapp] uniapp development app online Preview PDF file
- 从实时应用角度谈通信总线仲裁机制和网络流控
- 数组中的第K个最大元素
- 英特尔集成光电研究最新进展推动共封装光学和光互连技术进步
- Scala基础教程--16--泛型
- 国元期货是正规平台吗?在国元期货开户安全吗?
- Scala basic tutorial -- 17 -- Collection
- [opencv introduction to mastery 9] opencv video capture, image and video conversion
- 使用SSH
猜你喜欢
随机推荐
Is Guoyuan futures a regular platform? Is it safe to open an account in Guoyuan futures?
876. Intermediate node of linked list
2022年字节跳动日常实习面经(抖音)
基于C语言的菜鸟驿站管理系统
【OpenCV入门到精通之九】OpenCV之视频截取、图片与视频互转
6.26cf simulation match B: solution to array reduction problem
更安全、更智能、更精致,长安Lumin完虐宏光MINI EV?
2022 ByteDance daily practice experience (Tiktok)
Scala basic tutorial -- 13 -- advanced function
Li Kou brush question diary /day2/2022.6.24
2014 Hefei 31st youth informatics Olympic Games (primary school group) test questions
爬虫(6) - 网页数据解析(2) | BeautifulSoup4在爬虫中的使用
神经网络物联网平台搭建(物联网平台搭建实战教程)
问下各位大佬有用过cdc直接mysql to clickhouse的么
千万不要只学 Oracle、MySQL!
请教一下 flinksql中 除了数据统计结果是状态被保存 数据本身也是状态吗
神经网络物联网是什么意思通俗的解释
876. 链表的中间结点
[mathematical basis of machine learning] (I) linear algebra (Part 1 +)
ESP32-C3入门教程 问题篇⑫——undefined reference to rom_temp_to_power, in function phy_get_romfunc_addr