<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{
background-color: skyblue;
}
ul{
background-color: whitesmoke;
list-style: none;
padding: 0;
width: 90px;
height: 90px;
border: 1px solid gray;
float: left;
margin: 10px;
border-radius: 10px;
/* 开启弹性布局 */
display: flex;
}
li{
width: 20px;
height: 20px;
margin: 5px;
background-color: gray;
border-radius: 50%;
}
/* 二号 水平居中 */
ul:nth-child(2){
justify-content: center;
}
/* 三号 靠右 */
ul:nth-child(3){
justify-content: flex-end;
}
/* 四号 靠右 上下居中 */
ul:nth-child(4){
justify-content: flex-end;
align-items: center;
}
/* 5号 左右居中 上下居中 */
ul:nth-child(5){
justify-content: center;
align-items: center;
}
/* 6号 左右 靠边 */
ul:nth-child(6){
justify-content: space-between;
}
/* 7号 左右 靠边 第二个色子 在最下方 */
ul:nth-child(7){
justify-content: space-between;
}
ul:nth-child(7) li:nth-child(2){
align-self: flex-end;
}
/* 8号 中间的色子 左右 上下居中 第三个 在右下角 */
ul:nth-child(8){
justify-content: space-between;
}
ul:nth-child(8) li:nth-child(2){
align-self: center;
}
ul:nth-child(8) li:nth-child(3){
align-self: flex-end;
}
/* 9号 从上往下排布 */
ul:nth-child(9){
justify-content: space-between;
flex-direction: column;
}
/* 10号 从上往下排布 */
ul:nth-child(10){
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
}
ul:nth-child(10) li{
margin: 10px;
}
/* 11号 从上往下排布 */
ul:nth-child(11){
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
}
ul:nth-child(11) li{
margin: 5px 10px;
}
ul:nth-child(11) li:nth-child(3){
margin: 5px 35px;
}
/* 11号 从上往下排布 */
ul:nth-child(12){
flex-wrap: wrap;
flex-direction: column;
align-content: space-around;
}
ul:nth-child(12) li{
/*margin: 5px 10px;*/
}
ul:nth-child(12) li:nth-child(3){
/*margin: 5px 35px;*/
}
/* 11号 从上往下排布 */
ul:nth-child(13){
flex-wrap: wrap;
/*flex-direction: column;*/
align-content: space-around;
}
ul:nth-child(13) li{
/*margin: 5px 10px;*/
}
ul:nth-child(13) li:nth-child(3){
/*margin: 5px 35px;*/
}
</style>
</head>
<body>
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
<ul>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>
flex布局 筛子
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 一、效果:两边固定,中间自适应的三栏布局 二、代码 1、圣杯布局 2、双飞翼布局 3、Flex布局 4、Grid布...
- 圣杯布局和双飞翼布局的目的,都是左右两栏固定宽度,中间部分自适应。示例目标:左200px,右100px,中间自适应...
- flex布局分为容器的设置和容器内成员的设置,容器的设置是管理成员的排列方式,也就是管理排列的方向和对齐的位置。成...