flex如何实现两个子元素一个左上一个居中

发布于 2022-09-11 20:29:39 字数 1364 浏览 24 评论 0

问题描述

近日学习flex布局,看到阮一峰老师有色子的布局训练,所以按照图片练习布局,在练习到两个圆点一个左上一个居中的时候发现有个问题,居中的那个元素只能垂直居中,无法水平居中,请教各位大神如何解决?

相关代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Flex测试</title>
    <style>
        ul,li {
            padding: 0px;
            margin: 0px;
            list-style: none;
        }
        ul{
            width: 100px;
            height: 100px;
            background-color: black;
            border-radius: 10px;
            display: flex;
            
        }
        li{
            background-color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }
        li:nth-child(2){
            align-self: center;
        }
    </style>
</head>
<body>
    <ul>
        <li></li>
        <li></li>
    </ul>
</body>
</html>

你期待的结果是什么?实际看到的错误信息又是什么?

想要达到的效果:

clipboard.png

现在实际做出来的效果:

clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

空城仅有旧梦在 2022-09-18 20:29:40

利用伪元素,flex 暂时还没有 justify-self

demo

代码:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Flex测试</title>
  <style>
    ul,
    li {
      padding: 0px;
      margin: 0px;
      list-style: none;
    }

    ul {
      width: 100px;
      height: 100px;
      background-color: black;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;

    }


    li,
    ul::after {
      background-color: white;
      width: 20px;
      height: 20px;
      border-radius: 50%;
    }

    ul::after {
      content: '';
      visibility: hidden; 
    }


    li:nth-child(2) {
      align-self: center;
    }
  </style>
</head>

<body>
  <ul>
    <li></li>
    <li></li>
  </ul>
</body>

</html>
天赋异禀 2022-09-18 20:29:40

align-self本来就不能水平居中,它替换的是父容器的align-items属性。

快乐很简单 2022-09-18 20:29:40

搬运工:
clipboard.png
display:flex;
当不设置flex-direction时默认为flex-direction:row,既主轴为水平方向,所以本来li应该是竖向排列的变成了两个挨在一起的横向排列,又因为你对第二个li设置了align-self:center,由图可知,此作用于子项纵轴(竖向)对齐方式,故而,第二li个垂直居中却没有水平居中.

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Flex测试</title>
    <style>
        ul,
        li {
            padding: 0px;
            margin: 0px;
            list-style: none;
        }

        ul {
            width: 100px;
            height: 100px;
            background-color: black;
            border-radius: 10px;
            display: flex;
            position: relative;
        }

        li {
            background-color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }

        li:nth-child(2) {
            align-self: center;
            position: absolute;
            left: 50%;
            transform: translate(-50%);
        }
    </style>
</head>

<body>
    <ul>
        <li></li>
        <li></li>
    </ul>
</body>

</html>
你另情深 2022-09-18 20:29:40
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Flex测试</title>
  <style>
    * {
      padding: 0;
      margin: 0
    }

    ul,
    li {
      padding: 0px;
      margin: 0px;
      list-style: none;
    }

    ul {
      width: 100px;
      height: 100px;
      background-color: black;
      border-radius: 10px;
      display: flex;

    }

    li {
      background-color: white;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      margin: 6px;
    }

    li:nth-child(1) {
      -webkit-align-self: flex-start;
      align-self: flex-start;
    }

    li:nth-child(2) {
      -webkit-align-self: center;
      align-self: center;
    }
  </style>
</head>

<body>
  <ul>
    <li></li>
    <li></li>
  </ul>
</body>

</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文