本文介绍: 父盒子使用相对定位,子盒子使用绝对定位,利用top:50% left:50% 让子盒子相距父盒子边界,左边界宽高的50% 利用 margintop marginleft返回盒子自身宽高的50%margin: auto;和 margintop:;/* 相当于父盒子高度的50% *//*相对于父盒子宽度的50%*//*向上走回自身高度的一半*//*向左走回自身宽度的一半*//* 距离上侧150px *//* 距离左侧300px *//* x居中 *//* y居中 */

效果

在这里插入图片描述

方法一:利用margin:auto

margin: auto;和 margintop: ;搭配使用

<style&gt;
        * {
            padding: 0;
            margin: 0;
        }
        .parent {  
            position: fixed;   
            width: 900px;
            height: 600px;
            background-color: aqua;
        }
        .children {
            margin: auto;
            margin-top: 150px;
            width: 300px;
            height: 300px;
            background-color: pink;
        }
    </style&gt;
</head&gt;
<body&gt;
    <div class="parent">
        <div class="children">

        </div>
    </div>
</body>
方法一:利用定位(子绝父相)

父盒子使用相对定位,子盒子使用绝对定位,利用top:50% left:50% 让子盒子相距父盒子上边界,左边宽高的50% 利用 margin-top marginleft返回子盒子自身宽高的50%

<style>
        * {
            padding: 0;
            margin: 0;
        }
        .parent {  
            position: relative;   
            width: 900px;
            height: 600px;
            background-color: aqua;
        }
        .children {
            position: absolute;
            top: 50%;
            /* 相当于父盒子高度的50% */
            left: 50%;
            /*相对于父盒子宽度的50%*/
            margin-top: -150px;
            /*向上走回自身高度的一半*/
            margin-left: -150px;
            /*向左走回自身宽度的一半*/
            width: 300px;
            height: 300px;
            background-color: pink;
        }
    </style>
</head>
<body>
    <div class="parent">
        <div class="children">

        </div>
    </div>
</body>
方法三:利用flex布局
<style>
      * {
        padding: 0;
        margin: 0;
      }
      .parent {
        display: flex;
        /* x轴居中 */
        justify-content: center;
        /* y居中 */
        align-items: center;
        width: 900px;
        height: 600px;
        background-color: aqua;
      }
      .children {
        width: 300px;
        height: 300px;
        background-color: pink;
      }
    </style>
  </head>
  <body>
    <div class="parent">
      <div class="children"></div>
    </div>
  </body>
方法四:利用计算外边距(和margin:auto相似)
<style>
      * {
        padding: 0;
        margin: 0;
      }
      .parent {
        position: fixed;
        width: 900px;
        height: 600px;
        background-color: aqua;
      }
      .children {
        /* 距离上侧150px */
        margin-top: 150px;
        /* 距离左侧300px */
        margin-left: 300px;
        width: 300px;
        height: 300px;
        background-color: pink;
      }
    </style>
  </head>
  <body>
    <div class="parent">
      <div class="children"></div>
    </div>
  </body>

原文地址:https://blog.csdn.net/weixin_52452081/article/details/130206976

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_27136.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注