.parent{

position: relative;

height: 100px;

background: red;

}

.child{

position: absolute;

left: 50%;

/或者使用margin-left: -宽/2/

transform: translateX(-50%);

background: blue;

}

效果:

在这里插入图片描述

垂直居中

1. 行内元素

line-height:高度

2. 块级元素高度一定

  • 定位实现

.parent{

position: relative;

background: #008a00;

height: 200px;

}

.child{

position: absolute;

top: 50%;

height: 100px;

margin-top: -50px; /高的一半/

background: yellow;

}

  • 绝对定位+margin: 0

.parent{

position: relative;

background-color: purple;

width: 150px;

height: 150px;

}

.child{

position: absolute;

margin: auto;

top: 0;

bottom: 0;

width: 50px;

height: 50px;

background-color: #f0ad4e;

}

在这里插入图片描述

3. 高度不确定

  • 定位实现

.parent{

position: relative;

background: #008a00;

height: 200px;

}

.child{

position: absolute;

top: 50%;

transform: translateY(-50%);

background: yellow;

}

效果:

在这里插入图片描述

  • flex布局

.parent{

display: flex;

background: #008a00;

height: 200px;

align-items: center;

}

.child{

background: yellow;

}

效果:

在这里插入图片描述

  • 使用grid布局.

下面方法是给父元素设置align-items: center或者align-content: center;

还有办法是给子元素设置align-self: center;

.parent{

display: grid;

border: red 1px solid;

width: 280px;

height: 200px;

align-items: center;

}

.child{

background-color: #afd9ee;

font-size: 40px;

}

在这里插入图片描述

  • table布局

表格布局vertical-align: middle;

.parent{

display: table;

background: #008a00;

height: 200px;

}

.child{

display: table-cell;

vertical-align: middle;

background: yellow;

}

效果:

在这里插入图片描述

水平垂直居中

1.position元素已知宽度

父元素:position: relative;

子元素:position: absolute;

marginmargin-top设置为-高度的一半

margin-left设置为-宽度的一半

.box {

height: 500px;

小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Web前端开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img
img
img
img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注:前端)
img

最后

前15.PNG

前16.PNG

由于文档内容过多,为了避免影响到大家的阅读体验,在此只以截图展示部分内容

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

含大厂面经、学习笔记、源码讲义、实战项目、讲解视频**

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注:前端)
[外链图片转存中…(img-6ayjkh6w-1710764757376)]

最后

[外链图片转存中…(img-UKUNPY9b-1710764757377)]

[外链图片转存中…(img-AsyBGjn7-1710764757377)]

由于文档内容过多,为了避免影响到大家的阅读体验,在此只以截图展示部分内容

开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐