3.使用伸缩盒justify-content、align-items
1.结合margin、top、right、left、bottom
一、利用伸缩盒flex使模块居中
1.伸缩盒与margin
给父元素设置为伸缩盒 dispaly:flex 子元素使用margin:auto
<!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>
/* 父元素设置flex 子元素margin:auto */
.parent {
width: 200px;
height: 200px;
background-color: aqua;
display: flex;
float: left;
}
.child {
width: 100px;
height: 100px;
background-color: pink;
margin: auto;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>
2.使用grid与margin
给父元素设置display:grid 子元素使用 margin:auto
.parent2 {
width: 200px;
height: 200px;
display: grid;
background-color: pink;
}
.child2 {
width: 100px;
height: 100px;
background-color: blue;
margin: auto;
}
3.使用伸缩盒justify–content、align–items
.parent3 {
width: 200px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(0, 255, 47);
float: left;
}
.child3 {
width: 100px;
height: 100px;
background-color: pink;
}
二、利用border和margin
margin–left、margin–right、margin–top、margin–bottom
为子元素自身宽高的一半
.parent4 {
width: 200px;
height: 200px;
border: 1px solid red;
background-color: rgb(0, 42, 255);
}
.child4 {
width: 100px;
height: 100px;
margin: 50px;
background-color: pink;
}
三、通过box–sizing和padding
通过给父元素设置为边框盒子并且利用padding挤压,使子元素居中
.parent5 {
width: 200px;
height: 200px;
padding: 50px;
box-sizing: border-box;
background-color: rgb(225, 255, 0);
}
.child5 {
width: 100px;
height: 100px;
background-color: pink;
}
四、通过父相子绝
1.结合margin、top、right、left、bottom
子元素设置绝对定位,并且设置
top: 0;
right: 0;
left: 0;
.parent6 {
width: 200px;
height: 200px;
position: relative;
background-color: rgb(0, 255, 242);
}
.child6 {
width: 100px;
height: 100px;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
margin: auto;
background-color: pink;
}
2.结合top、left、margin
父元素设置相对定位
子元素设置绝对定位,并且设置
top: 50%;
left: 50%;
.parent7 {
width: 400px;
height: 400px;
position: relative;
background-color: rgb(222, 111, 94);
}
.child7 {
width: 200px;
height: 200px;
background-color: pink;
position: absolute;
top: 50%;
left: 50%;
margin-left: -100px;
margin-top: -100px;
}
原文地址:https://blog.csdn.net/m0_55673399/article/details/125997552
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_34620.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。