资讯专栏INFORMATION COLUMN

CSS居中对齐

XFLY / 3443人阅读

摘要:水平居中子元素为行内元素子元素为块级元素多个块级子元素垂直居中单行子元素空格不换行多行子元素可变换大小块级子元素知道子元素高度不知道子元素高度水平垂直居中知道子元素的宽高子元素的没有固定的宽高

</>复制代码

  1. https://css-tricks.com/center...
    https://segmentfault.com/a/11...
水平居中 子元素为行内元素

</>复制代码

  1. .center-children {
  2. text-align: center;
  3. }
子元素为块级元素

</>复制代码

  1. .center-me {
  2. margin: 0 auto;
  3. }
多个块级子元素

</>复制代码

  1. .inline-block-center {
  2. text-align: center;
  3. }
  4. .inline-block-center div {
  5. display: inline-block;
  6. text-align: left;
  7. }

</>复制代码

  1. .flex-center {
  2. display: flex;
  3. justify-content: center;
  4. }
垂直居中 单行子元素

</>复制代码

  1. .link {
  2. padding-top: 30px;
  3. padding-bottom: 30px;
  4. }

</>复制代码

  1. .center-text-trick {
  2. height: 100px;
  3. line-height: 100px;
  4. white-space: nowrap; //空格不换行
  5. }
多行子元素

</>复制代码

  1. .center-table {
  2. display: table;
  3. }
  4. .center-table p {
  5. display: table-cell;
  6. vertical-align: middle;
  7. }

</>复制代码

  1. .flex-center-vertically {
  2. display: flex;
  3. justify-content: center;
  4. flex-direction: column;
  5. resize: vertical; //可变换大小
  6. }

</>复制代码

  1. .ghost-center {
  2. position: relative;
  3. }
  4. .ghost-center::before {
  5. content: " ";
  6. display: inline-block;
  7. height: 100%;
  8. width: 1%;
  9. vertical-align: middle;
  10. }
  11. .ghost-center p {
  12. display: inline-block;
  13. vertical-align: middle;
  14. }
块级子元素 知道子元素高度

</>复制代码

  1. .parent {
  2. position: relative;
  3. }
  4. .child {
  5. position: absolute;
  6. top: 50%;
  7. height: 100px;
  8. margin-top: -50px; /* account for padding and border if not using box-sizing: border-box; */
  9. }
不知道子元素高度

</>复制代码

  1. .parent {
  2. position: relative;
  3. }
  4. .child {
  5. position: absolute;
  6. top: 50%;
  7. transform: translateY(-50%);
  8. }

</>复制代码

  1. .parent {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. }
水平垂直居中 知道子元素的宽高

</>复制代码

  1. .parent {
  2. position: relative;
  3. }
  4. .child {
  5. width: 300px;
  6. height: 100px;
  7. padding: 20px;
  8. position: absolute;
  9. top: 50%;
  10. left: 50%;
  11. margin: -70px 0 0 -170px;
  12. }
子元素的没有固定的宽高

</>复制代码

  1. .parent {
  2. position: relative;
  3. }
  4. .child {
  5. position: absolute;
  6. top: 50%;
  7. left: 50%;
  8. transform: translate(-50%, -50%);
  9. }

</>复制代码

  1. .parent {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. }

</>复制代码

  1. body, html {
  2. height: 100%;
  3. display: grid;
  4. }
  5. span {
  6. margin: auto;
  7. }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/112760.html

相关文章

  • CSS世界》笔记三:内联元素与对齐

    摘要:上一篇世界笔记二盒模型四大家族下一篇世界笔记四流的保护与破坏写在前面在页面布局中,内联元素的垂直对齐是比较常见和基础的布局需求,但是我们往往会因为垂直对齐中的,而头疼不已。 上一篇:《CSS世界》笔记二:盒模型四大家族下一篇:《CSS世界》笔记四:流的保护与破坏 写在前面 在页面布局中,内联元素的垂直对齐是比较常见和基础的布局需求,但是我们往往会因为垂直对齐中的1px,2px而头疼不已...

    HtmlCssJs 评论0 收藏0
  • css对齐方案总结

    摘要:核心代码利用布局利用布局,其中用于设置或检索弹性盒子元素在主轴横轴方向上的对齐方式而属性定义子项在容器的当前行的侧轴纵轴方向上的对齐方式。核心代码相对于的水平垂直居中列表布局兼容性好核心代码布局核心代码css对齐方案总结 垂直居中 通用布局方式(内敛元素和块状元素都适用) 利用flex:核心代码: 12345 .container{ display:flex; ...

    marek 评论0 收藏0
  • css两种垂直居中对齐解决方案

    第一种垂直居中方法 利用vertical-align:middle进行垂直方向上的居中对齐,此方法需要满足的条件: 设置父元素的行高line-height等于父元素height的高度 子元素必须是行内块级元素display:inline-block; 子元素设置vertical-align:middle 此方法在开发中不能右浮动(不能靠右边) 下方是完整代码,可以新建一个HTML文件进行测...

    elarity 评论0 收藏0
  • css两种垂直居中对齐解决方案

    第一种垂直居中方法 利用vertical-align:middle进行垂直方向上的居中对齐,此方法需要满足的条件: 设置父元素的行高line-height等于父元素height的高度 子元素必须是行内块级元素display:inline-block; 子元素设置vertical-align:middle 此方法在开发中不能右浮动(不能靠右边) 下方是完整代码,可以新建一个HTML文件进行测...

    ztyzz 评论0 收藏0
  • vertical-align属性与垂直居中

    摘要:方法二利用,设置元素结构,并应用实现垂直居中,这种方法的实现可用于多行文本,要求及以上版本。 让元素居中对齐是非常常见的需求,首先是水平居中,要实现水平居中行内元素只需要在其父元素上设置text-align: center即可,对于块级元素来说让它的margin-left: auto和margin-right: auto即可(width不可为auto),那么垂直居中呢?找下css属性发...

    bergwhite 评论0 收藏0

发表评论

0条评论

XFLY

|高级讲师

TA的文章

阅读更多
最新活动
阅读需要支付1元查看
<