概述
主轴
<!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>Document</title>
<style>
.box {
width: 1200px;
height: 400px;
background-color: pink;
margin: 0 auto;
/* 弹性容器 */
display: flex;
/* 主轴对齐 快捷键jc*/
/* 从左到右,起点开始排列盒子 */
justify-content: flex-start;
/* 从右到左,终点开始排列盒子 */
justify-content: flex-end;
/* 盒子水平居中 重点*/
justify-content: center;
/* 2边靠边,中间自适应 重点*/
justify-content: space-between;
/* 盒子自适应,按照1边2的比列平均分 */
justify-content: space-around;
/* 盒子自适应,盒子中间的距离1:1平均分 */
justify-content: space-evenly;
}
/* 弹性盒子 默认没有元素之分 */
.box span {
width: 250px;
height: 200px;
background-color: blue;
}
.box span:nth-child(2n) {
background-color: yellowgreen;
}
</style>
</head>
<body>
<div class="box">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
</div>
</body>
</html>
测轴
<!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>Document</title>
<style>
.box {
width: 1200px;
height: 400px;
background-color: pink;
margin: 0 auto;
/* 弹性容器 */
display: flex;
/* 侧轴对齐方式 快捷键ai*/
/* 从上往下排列盒子 */
align-items: flex-start;
/* 从下往上排列盒子 */
align-items: flex-end;
/* 垂直盒子居中 重点 */
align-items: center;
/* 默认值 拉伸*/
align-items: stretch;
}
/* 弹性盒子 */
.box div {
width: 200px;
/* height: 200px; */
background-color: blue;
}
.box div:nth-child(2n) {
background-color: yellowgreen;
}
</style>
</head>
<body>
<div class="box">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
</div>
</body>
</html>
最后
以上就是欣喜冬瓜为你收集整理的flex排列方式(主轴X,测轴Y)的全部内容,希望文章能够帮你解决flex排列方式(主轴X,测轴Y)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复