概述
一、两列布局
效果图
代码:
<!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>
body{
display: flex;
}
html,body{
height: 100%;
}
.box1{
background-color: aqua;
flex: 0 0 200px;
}
.box2{
background-color: palevioletred;
height: 100%;
flex: 1;
}
</style>
</head>
<body>
<div class="box1">1</div>
<div class="box2">2</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>
body{
display: flex;
}
html,body{
height: 100%;
}
.box1{
background-color: aqua;
flex: 0 0 200px;
}
.box2{
background-color: palevioletred;
height: 100%;
flex: 1;
}
.box3{
background-color: rgb(53, 56, 236);
flex: 0 0 200px;
}
/* box{
width: 100%;
height: 10px;
background-color: azure;
} */
</style>
</head>
<body>
<!-- <div class="box">10</div> -->
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
</body>
</html>
最后
以上就是大意吐司为你收集整理的flex常见的几种经典布局的全部内容,希望文章能够帮你解决flex常见的几种经典布局所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复