首页 前端知识 html css使得盒子水平垂直居中(常用的三种方法)

html css使得盒子水平垂直居中(常用的三种方法)

2024-05-05 21:05:53 前端知识 前端哥 583 709 我要收藏

背景

常常我们会遇到让盒子在页面中水平垂直居中,例如在登录页面的时候,我们会让登录的盒子水平垂直居中在页面的中心。这个时候我们会有很多种方法去使得盒子居中。下面是我常用的三种方法:

  1. 定位+margin:auto
    // css
    .aaa {
    width: 200px;
    height: 200px;
    position: relative;
    border: 1px solid #000;
    }
    .bbb {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #000;
    margin: auto;
    text-align: center;
    line-height: 100px;
    }
    // html
    <div class="aaa">
    <div class="bbb">1</div>
    </div>
    复制
  2. flex布局法
    // css
    .ccc {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    }
    .ddd {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    text-align: center;
    line-height: 100px;
    }
    // html
    <div class="ccc">
    <div class="ddd">2</div>
    </div>
    复制
  3. 定位移动法
    // css
    .eee {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
    position: relative;
    margin-left: 15px;
    }
    .fff {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    text-align: center;
    line-height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    }
    // html
    <div class="eee">
    <div class="fff">3</div>
    </div>
    复制

整体页面效果

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>盒子水平垂直居中</title>
<style>
.box {
display: flex;
}
.aaa {
width: 200px;
height: 200px;
position: relative;
border: 1px solid #000;
}
.bbb {
width: 100px;
height: 100px;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
border: 1px solid #000;
margin: auto;
text-align: center;
line-height: 100px;
}
.ccc {
width: 200px;
height: 200px;
border: 1px solid #000;
display: flex;
justify-content: center;
align-items: center;
margin-left: 15px;
}
.ddd {
width: 100px;
height: 100px;
border: 1px solid #000;
text-align: center;
line-height: 100px;
}
.eee {
width: 200px;
height: 200px;
border: 1px solid #000;
position: relative;
margin-left: 15px;
}
.fff {
width: 100px;
height: 100px;
border: 1px solid #000;
text-align: center;
line-height: 100px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="box">
<div class="aaa">
<div class="bbb">1</div>
</div>
<div class="ccc">
<div class="ddd">2</div>
</div>
<div class="eee">
<div class="fff">3</div>
</div>
</div>
</body>
</html>
复制
转载请注明出处或者链接地址:https://www.qianduange.cn//article/7012.html
标签
评论
还可以输入200
共0条数据,当前/页
发布的文章

JQuery中的load()、$

2024-05-10 08:05:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!