<!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布局分为容器的设置和容器内成员的设置,容器的设置是管理成员的排列方式,也就是管理排列的方向和对齐的位置。成...